1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Merge remote branch 'callumacrae/ticket/10112' into develop-olympus

* callumacrae/ticket/10112:
  [ticket/10112] Replaced a couple occurrences of count() with sizeof()
This commit is contained in:
Igor Wiedler
2011-03-31 20:31:58 +02:00
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)