aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthur <arthur@hoa.ro>2016-02-04 20:29:02 +0100
committerArthur <arthur@hoa.ro>2016-02-04 20:29:02 +0100
commit5369f04521c8ed5bf332b75311ca73b604df1097 (patch)
treea77839ea859eec8cab335ba9a83db811e88770d4
parentc11330fe32c0fd79b8f041bb98c97cae720d16fe (diff)
parent091e2d139dfd35e1a0fbfef5c561b26af633dbd9 (diff)
downloadShaarli-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.php3
1 files changed, 2 insertions, 1 deletions
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;
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'] = '';