diff options
Diffstat (limited to 'phpBB/includes/db/sqlite.php')
-rw-r--r-- | phpBB/includes/db/sqlite.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/sqlite.php b/phpBB/includes/db/sqlite.php index abeee3a358..f64e22eab1 100644 --- a/phpBB/includes/db/sqlite.php +++ b/phpBB/includes/db/sqlite.php @@ -148,7 +148,7 @@ class sql_db { while ($row = @sqlite_fetch_array($result, @sqlite_ASSOC)) { - if (!$html_table && count($row)) + if (!$html_table && sizeof($row)) { $html_table = TRUE; $this->sql_report .= "<table width=100% border=1 cellpadding=2 cellspacing=1>\n"; |