Merge pull request #458 from ArthurHoaro/plugins-init-parameters

Initialize plugin parameters array to avoid unnecessary warning.
This commit is contained in:
Arthur 2016-02-04 20:29:02 +01:00
commit 5369f04521

View file

@ -114,7 +114,8 @@ $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400;
//); //);
$GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode'); $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. // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable.
$GLOBALS['config']['PUBSUBHUB_URL'] = ''; $GLOBALS['config']['PUBSUBHUB_URL'] = '';