diff options
author | Arthur <arthur@hoa.ro> | 2016-02-04 20:29:02 +0100 |
---|---|---|
committer | Arthur <arthur@hoa.ro> | 2016-02-04 20:29:02 +0100 |
commit | 5369f04521c8ed5bf332b75311ca73b604df1097 (patch) | |
tree | a77839ea859eec8cab335ba9a83db811e88770d4 | |
parent | c11330fe32c0fd79b8f041bb98c97cae720d16fe (diff) | |
parent | 091e2d139dfd35e1a0fbfef5c561b26af633dbd9 (diff) | |
download | Shaarli-5369f04521c8ed5bf332b75311ca73b604df1097.tar.gz Shaarli-5369f04521c8ed5bf332b75311ca73b604df1097.tar.zst Shaarli-5369f04521c8ed5bf332b75311ca73b604df1097.zip |
Merge pull request #458 from ArthurHoaro/plugins-init-parameters
Initialize plugin parameters array to avoid unnecessary warning.
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -114,7 +114,8 @@ $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400; | |||
114 | //); | 114 | //); |
115 | $GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode'); | 115 | $GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode'); |
116 | 116 | ||
117 | //$GLOBALS['plugins']['WALLABAG_URL'] = 'https://demo.wallabag.org/'; | 117 | // Initialize plugin parameters array. |
118 | $GLOBALS['plugins'] = array(); | ||
118 | 119 | ||
119 | // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. | 120 | // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. |
120 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; | 121 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; |