summaryrefslogtreecommitdiffstats
path: root/system/database/DB.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-08-22 01:11:23 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-08-22 01:11:23 +0200
commitf65308f36173d7924f1460e0383e5a6c46e626b5 (patch)
treea9dfcc82f20efd560a9e1a198d35d7d6d82cdb34 /system/database/DB.php
parent29efd1577cce0b44423e4606f5a17f23619c7151 (diff)
fixed a missing semi colon
Diffstat (limited to 'system/database/DB.php')
-rw-r--r--system/database/DB.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/system/database/DB.php b/system/database/DB.php
index ef67c80c8..2dd86e14e 100644
--- a/system/database/DB.php
+++ b/system/database/DB.php
@@ -44,7 +44,8 @@ function &DB($params = '', $active_record_override = FALSE)
show_error('You have specified an invalid database connection group.');
}
- $params = $db[$active_group] }
+ $params = $db[$active_group];
+ }
elseif (is_string($params))
{