X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=index.php;h=64ec809e1817676adb07763f65551e65dc146439;hb=5369f04521c8ed5bf332b75311ca73b604df1097;hp=31dcbf0fe7455a9de4a437ea190d556801734117;hpb=729d267172b245572522fccd88a7717beb8d3226;p=github%2Fshaarli%2FShaarli.git diff --git a/index.php b/index.php index 31dcbf0f..64ec809e 100644 --- a/index.php +++ b/index.php @@ -50,6 +50,9 @@ $GLOBALS['config']['LOG_FILE'] = $GLOBALS['config']['DATADIR'].'/log.txt'; // For updates check of Shaarli $GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt'; +// Set ENABLE_UPDATECHECK to disabled by default. +$GLOBALS['config']['ENABLE_UPDATECHECK'] = false; + // RainTPL cache directory (keep the trailing slash!) $GLOBALS['config']['RAINTPL_TMP'] = 'tmp/'; // Raintpl template directory (keep the trailing slash!) @@ -111,7 +114,8 @@ $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400; //); $GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode'); -//$GLOBALS['plugins']['WALLABAG_URL'] = 'https://demo.wallabag.org/'; +// Initialize plugin parameters array. +$GLOBALS['plugins'] = array(); // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. $GLOBALS['config']['PUBSUBHUB_URL'] = '';