summaryrefslogtreecommitdiffstats
path: root/system/database/DB_driver.php
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2011-10-10 16:10:46 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-10-27 00:42:06 +0200
commit6f531dc364553975a8ea4dce85927a09f6628902 (patch)
tree7f61e9fa366ca736ac0b1efbdad48feb6f8a76a7 /system/database/DB_driver.php
parent24f325c079d33a456f15311442ed21b437df1ea7 (diff)
Converted database constructors to PHP5 type
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r--system/database/DB_driver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index f3e824daa..3680b85c2 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -78,7 +78,7 @@ class CI_DB_driver {
*
* @param array
*/
- function CI_DB_driver($params)
+ function __construct($params)
{
if (is_array($params))
{
@@ -1387,4 +1387,4 @@ class CI_DB_driver {
/* End of file DB_driver.php */
-/* Location: ./system/database/DB_driver.php */ \ No newline at end of file
+/* Location: ./system/database/DB_driver.php */