aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-02-02 21:07:25 +0100
committerArthurHoaro <arthur@hoa.ro>2016-02-02 21:07:25 +0100
commit091e2d139dfd35e1a0fbfef5c561b26af633dbd9 (patch)
tree4426b675909a77dd1c12ca3a08dd641897ef0e23 /index.php
parent268a2e52659964fb7d033a1bb4d1490bf8cc49bf (diff)
downloadShaarli-091e2d139dfd35e1a0fbfef5c561b26af633dbd9.tar.gz
Shaarli-091e2d139dfd35e1a0fbfef5c561b26af633dbd9.tar.zst
Shaarli-091e2d139dfd35e1a0fbfef5c561b26af633dbd9.zip
Initialize plugin parameters array to avoid unnecessary warning.
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index 31dcbf0f..6a5eb2ae 100644
--- a/index.php
+++ b/index.php
@@ -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'] = '';