diff options
author | Timothy Warren <tim@timshomepage.net> | 2011-10-10 16:10:46 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-10-27 00:42:06 +0200 |
commit | 6f531dc364553975a8ea4dce85927a09f6628902 (patch) | |
tree | 7f61e9fa366ca736ac0b1efbdad48feb6f8a76a7 /system/database/DB_forge.php | |
parent | 24f325c079d33a456f15311442ed21b437df1ea7 (diff) |
Converted database constructors to PHP5 type
Diffstat (limited to 'system/database/DB_forge.php')
-rw-r--r-- | system/database/DB_forge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php index 0dd29c238..6bc40411b 100644 --- a/system/database/DB_forge.php +++ b/system/database/DB_forge.php @@ -35,7 +35,7 @@ class CI_DB_forge { * Grabs the CI super object instance so we can access it. * */ - function CI_DB_forge() + function __construct() { // Assign the main database object to $this->db $CI =& get_instance(); |