]> git.mxchange.org Git - friendica.git/commitdiff
Prevent a memory Access Violation when the database isn't connected
authorMichael <heluecht@pirati.ca>
Thu, 27 Oct 2016 20:16:56 +0000 (20:16 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 27 Oct 2016 20:16:56 +0000 (20:16 +0000)
include/text.php

index 4b2a4a9409f4254a89f8ecb4f2230bcd9e451005..1b3050f5fe8b275241b3cd270ffa58a9616a0745 100644 (file)
@@ -703,10 +703,6 @@ function logger($msg, $level = 0) {
        global $db;
        global $LOGGER_LEVELS;
 
-       $debugging = get_config('system','debugging');
-       $logfile   = get_config('system','logfile');
-       $loglevel = intval(get_config('system','loglevel'));
-
        // turn off logger in install mode
        if (
                $a->module == 'install'
@@ -718,6 +714,10 @@ function logger($msg, $level = 0) {
                return;
        }
 
+       $debugging = get_config('system','debugging');
+       $logfile   = get_config('system','logfile');
+       $loglevel = intval(get_config('system','loglevel'));
+
        if (count($LOGGER_LEVELS) == 0) {
                foreach (get_defined_constants() as $k => $v) {
                        if (substr($k, 0, 7) == "LOGGER_") {