diff options
author | redmatrix <git@macgirvin.com> | 2016-04-25 16:55:33 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-25 16:55:33 -0700 |
commit | c3b0c0f32a17649503db67f208cce6f9e0cdc322 (patch) | |
tree | bd0ef639d079f5220c9b50737209a13fadbc10cd /include/text.php | |
parent | 6291c08e01edda16a9dbb1f58e91a829538fc25e (diff) | |
download | volse-hubzilla-c3b0c0f32a17649503db67f208cce6f9e0cdc322.tar.gz volse-hubzilla-c3b0c0f32a17649503db67f208cce6f9e0cdc322.tar.bz2 volse-hubzilla-c3b0c0f32a17649503db67f208cce6f9e0cdc322.zip |
remove global db variable
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/text.php b/include/text.php index 0a7f84b01..f27abf80b 100644 --- a/include/text.php +++ b/include/text.php @@ -540,11 +540,11 @@ function attribute_contains($attr, $s) { */ function logger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO) { - // turn off logger in install mode - global $a; - global $db; - if((App::$module == 'install') || (! ($db && $db->connected))) + require_once('include/dba/dba_driver.php'); + + // turn off logger in install mode + if((App::$module == 'install') || (! (DBA::$dba && DBA::$dba->connected))) return; $debugging = get_config('system', 'debugging'); @@ -621,11 +621,11 @@ function log_priority_str($priority) { * @param int $level A log level. */ function dlogger($msg, $level = 0) { - // turn off logger in install mode - global $a; - global $db; - if((App::$module == 'install') || (! ($db && $db->connected))) + require_once('include/dba/dba_driver.php'); + + // turn off logger in install mode + if((App::$module == 'install') || (! (DBA::$dba && DBA::$dba->connected))) return; $debugging = get_config('system','debugging'); |