]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - index.php
Common hooks: process includes before header/footer
[github/shaarli/Shaarli.git] / index.php
index dc5aa4bf3f16c1b18507cb9e0022012ee8f59725..9785c419e477ebc6404259fdd6961216b90cc453 100644 (file)
--- a/index.php
+++ b/index.php
@@ -114,7 +114,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'] = '';
@@ -1122,9 +1123,9 @@ function renderPage()
     // Call plugin hooks for header, footer and includes, specifying which page will be rendered.
     // Then assign generated data to RainTPL.
     $common_hooks = array(
+        'includes',
         'header',
         'footer',
-        'includes',
     );
     $pluginManager = PluginManager::getInstance();
     foreach($common_hooks as $name) {