]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Initialize plugin parameters array to avoid unnecessary warning. 458/head
authorArthurHoaro <arthur@hoa.ro>
Tue, 2 Feb 2016 20:07:25 +0000 (21:07 +0100)
committerArthurHoaro <arthur@hoa.ro>
Tue, 2 Feb 2016 20:07:25 +0000 (21:07 +0100)
index.php

index 31dcbf0fe7455a9de4a437ea190d556801734117..6a5eb2aeb666bc4df74db78fbda03007860b72ef 100644 (file)
--- a/index.php
+++ b/index.php
@@ -111,7 +111,8 @@ $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400;
 //);
 $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.
 $GLOBALS['config']['PUBSUBHUB_URL'] = '';