diff options
author | Timothy Warren <tim@timshomepage.net> | 2011-10-10 16:10:46 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2011-10-10 16:10:46 +0200 |
commit | a2097a077474eab1b9d35acc2c93f0e99a7f12d0 (patch) | |
tree | 870eb2c4055ac44a4d3197c86854429324a33d61 /system/database/DB_utility.php | |
parent | a2e7cd4c2f94d9b215d4e6e73be7c276ddd3eaca (diff) |
Converted database constructors to PHP5 type
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r-- | system/database/DB_utility.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php index a5f174f0a..52196b7ce 100644 --- a/system/database/DB_utility.php +++ b/system/database/DB_utility.php @@ -33,7 +33,7 @@ class CI_DB_utility extends CI_DB_forge { * Grabs the CI super object instance so we can access it. * */ - function CI_DB_utility() + function __construct() { // Assign the main database object to $this->db $CI =& get_instance(); |