diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2011-03-31 20:31:58 +0200 |
|---|---|---|
| committer | Igor Wiedler <igor@wiedler.ch> | 2011-03-31 20:31:58 +0200 |
| commit | 564ce6c7f680090c606a6be4d2598dd04b88aab4 (patch) | |
| tree | ef0a93abea353336e45803f01c2804dab56f9728 /phpBB/includes/db | |
| parent | ec5ca9df6b37f38cff5ddc4bb9bd0bd6f2795b01 (diff) | |
| parent | 657971754bd72debb3086ac084af07a7c3d7831c (diff) | |
| download | forums-564ce6c7f680090c606a6be4d2598dd04b88aab4.tar forums-564ce6c7f680090c606a6be4d2598dd04b88aab4.tar.gz forums-564ce6c7f680090c606a6be4d2598dd04b88aab4.tar.bz2 forums-564ce6c7f680090c606a6be4d2598dd04b88aab4.tar.xz forums-564ce6c7f680090c606a6be4d2598dd04b88aab4.zip | |
Merge remote branch 'callumacrae/ticket/10112' into develop-olympus
* callumacrae/ticket/10112:
[ticket/10112] Replaced a couple occurrences of count() with sizeof()
Diffstat (limited to 'phpBB/includes/db')
| -rw-r--r-- | phpBB/includes/db/mssqlnative.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/mssqlnative.php b/phpBB/includes/db/mssqlnative.php index 8912cda178..e057e7fe74 100644 --- a/phpBB/includes/db/mssqlnative.php +++ b/phpBB/includes/db/mssqlnative.php @@ -50,7 +50,7 @@ class result_mssqlnative } } - $this->m_row_count = count($this->m_rows); + $this->m_row_count = sizeof($this->m_rows); } private function array_to_obj($array, &$obj) |
