diff options
author | Timothy Warren <tim@timshomepage.net> | 2011-10-06 02:41:38 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2011-10-06 02:41:38 +0200 |
commit | f7a8d86dbc6805a4e52964bbea76738df75b5f35 (patch) | |
tree | e243d089d272b8eea3c548d0c4b9e2d435c5c390 /system/database/DB_utility.php | |
parent | 47663970e357c51ad16d1a1a3d3b52428c022505 (diff) |
Changed all db constructors to newer syntax, made insert_id() function more convenient for postgres on pdo driver
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(); |