From: Arthur Date: Thu, 4 Feb 2016 19:29:02 +0000 (+0100) Subject: Merge pull request #458 from ArthurHoaro/plugins-init-parameters X-Git-Tag: v0.6.4~18 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=5369f04521c8ed5bf332b75311ca73b604df1097;hp=c11330fe32c0fd79b8f041bb98c97cae720d16fe;p=github%2Fshaarli%2FShaarli.git Merge pull request #458 from ArthurHoaro/plugins-init-parameters Initialize plugin parameters array to avoid unnecessary warning. --- diff --git a/index.php b/index.php index dc5aa4bf..64ec809e 100644 --- a/index.php +++ b/index.php @@ -114,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'] = '';