From: skodak Date: Tue, 4 Nov 2008 22:29:18 +0000 (+0000) Subject: MDL-16920 mysqli: refactored driver to use new query logging X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d8f27d7bd27bd40aba9324ede9e4173a9becda49;p=moodle.git MDL-16920 mysqli: refactored driver to use new query logging --- diff --git a/lib/dml/mysqli_native_moodle_database.php b/lib/dml/mysqli_native_moodle_database.php index c0701d3b14..acb85928dc 100644 --- a/lib/dml/mysqli_native_moodle_database.php +++ b/lib/dml/mysqli_native_moodle_database.php @@ -137,7 +137,6 @@ class mysqli_native_moodle_database extends moodle_database { * @return array of table names in lowercase and without prefix */ public function get_tables() { - $this->reads++; $tables = array(); $sql = "SHOW TABLES"; $this->query_start($sql, null, SQL_QUERY_AUX);