diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-08-22 01:11:23 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-08-22 01:11:23 +0200 |
commit | f65308f36173d7924f1460e0383e5a6c46e626b5 (patch) | |
tree | a9dfcc82f20efd560a9e1a198d35d7d6d82cdb34 | |
parent | 29efd1577cce0b44423e4606f5a17f23619c7151 (diff) |
fixed a missing semi colon
-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))
{
|