summaryrefslogtreecommitdiffstats
path: root/system/database/DB_driver.php
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-02-29 14:58:55 +0100
committerTimothy Warren <tim@timshomepage.net>2012-02-29 14:58:55 +0100
commit7980923d0c7e62fb545e3b750dfe5cec4a057b48 (patch)
treef8d4a382b897ccb34497a76798daac930fb338a3 /system/database/DB_driver.php
parent249842f2f79aaee7cdb02696f1b55e71e0623a08 (diff)
parenta5a2cfef881f4cb70729b854e2e86932f28c43f6 (diff)
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into firebird
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r--system/database/DB_driver.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index d5ecafc85..4be01cff4 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -1424,6 +1424,22 @@ class CI_DB_driver {
return $item.$alias;
}
+
+ // --------------------------------------------------------------------
+
+ /**
+ * Dummy method that allows Active Record class to be disabled
+ *
+ * This function is used extensively by every db driver.
+ *
+ * @access private
+ * @return void
+ */
+ protected function _reset_select()
+ {
+
+ }
+
}
/* End of file DB_driver.php */