diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-03-07 12:11:18 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-03-08 14:39:03 +0100 |
commit | c11607bdd1ad4209a7697f0dc8d46ea81795b14c (patch) | |
tree | 167e903aad4f7408a131426112a065c19ade0b56 /phpBB/includes/db/mysql.php | |
parent | 01d90e59a8c311778a832ba4920e4c5a85b1256f (diff) | |
download | forums-c11607bdd1ad4209a7697f0dc8d46ea81795b14c.tar forums-c11607bdd1ad4209a7697f0dc8d46ea81795b14c.tar.gz forums-c11607bdd1ad4209a7697f0dc8d46ea81795b14c.tar.bz2 forums-c11607bdd1ad4209a7697f0dc8d46ea81795b14c.tar.xz forums-c11607bdd1ad4209a7697f0dc8d46ea81795b14c.zip |
[ticket/10653] Call get_row_count of base class in mysql get_estimated_row_count
There is no point in fetching the table status again.
PHPBB3-10653
Diffstat (limited to 'phpBB/includes/db/mysql.php')
-rw-r--r-- | phpBB/includes/db/mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/mysql.php b/phpBB/includes/db/mysql.php index 87413e808d..1ccb785150 100644 --- a/phpBB/includes/db/mysql.php +++ b/phpBB/includes/db/mysql.php @@ -344,7 +344,7 @@ class dbal_mysql extends dbal } } - return $this->get_row_count($table_name); + return parent::get_row_count($table_name); } /** |