Initialize plugin parameters array to avoid unnecessary warning.

This commit is contained in:
ArthurHoaro 2016-02-02 21:07:25 +01:00
parent 268a2e5265
commit 091e2d139d

View file

@ -111,7 +111,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'] = '';