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/network.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/network.php')
-rw-r--r-- | include/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php index ec255581d..f822b644d 100644 --- a/include/network.php +++ b/include/network.php @@ -2035,7 +2035,7 @@ function get_site_info() { 'admin' => $admin, 'site_name' => (($site_name) ? $site_name : ''), 'platform' => Zotlabs\Project\System::get_platform_name(), - 'dbdriver' => $db->getdriver(), + 'dbdriver' => \DBA::$dba->getdriver(), 'lastpoll' => get_config('system','lastpoll'), 'info' => (($site_info) ? $site_info : ''), 'channels_total' => $channels_total_stat, |