From: Roland Häder Date: Wed, 20 Jul 2016 07:47:52 +0000 (+0200) Subject: Possible fix for array_push() message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e444c97372c3c0e04e0707f1c2255c2f2efe37d5;p=mailer.git Possible fix for array_push() message Signed-off-by: Roland Häder --- diff --git a/inc/general-functions.php b/inc/general-functions.php index acdec10b65..1fba1265d7 100644 --- a/inc/general-functions.php +++ b/inc/general-functions.php @@ -75,6 +75,12 @@ function initApplication ($path) { // Enable HTML templates by default enableTemplateHtml(); + // Init stats system + initStatsSystem(); + + // Init HTTP handling + initHttp(); + // Are we in installation phase? if ((!isInstaller()) && (isInstalled())) { // Regular bootstrap @@ -84,15 +90,6 @@ function initApplication ($path) { doInstallerBootstrap(); } - // Init stats system - initStatsSystem(); - - // Init HTTP handling - initHttp(); - - // Init stats system - initStatsSystem(); - // Handle fatal errors runFilterChain('handle_fatal_errors'); }