diff options
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB.php | 3 |
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))
{
|