1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/10112] Replaced a couple occurrences of count() with sizeof()

As per the coding guidlines, sizeof() should be used instead of count().

PHPBB3-10112
This commit is contained in:
Callum Macrae
2011-03-29 21:12:04 +01:00
parent 5e2bbdb22b
commit 657971754b
2 changed files with 28 additions and 28 deletions

View File

@@ -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)