diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-02-02 21:07:25 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-02-02 21:07:25 +0100 |
commit | 091e2d139dfd35e1a0fbfef5c561b26af633dbd9 (patch) | |
tree | 4426b675909a77dd1c12ca3a08dd641897ef0e23 | |
parent | 268a2e52659964fb7d033a1bb4d1490bf8cc49bf (diff) | |
download | Shaarli-091e2d139dfd35e1a0fbfef5c561b26af633dbd9.tar.gz Shaarli-091e2d139dfd35e1a0fbfef5c561b26af633dbd9.tar.zst Shaarli-091e2d139dfd35e1a0fbfef5c561b26af633dbd9.zip |
Initialize plugin parameters array to avoid unnecessary warning.
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -111,7 +111,8 @@ $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400; | |||
111 | //); | 111 | //); |
112 | $GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode'); | 112 | $GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode'); |
113 | 113 | ||
114 | //$GLOBALS['plugins']['WALLABAG_URL'] = 'https://demo.wallabag.org/'; | 114 | // Initialize plugin parameters array. |
115 | $GLOBALS['plugins'] = array(); | ||
115 | 116 | ||
116 | // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. | 117 | // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. |
117 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; | 118 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; |