From acafbcba2e7e44d021680ea0abb52964febbfafd Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sun, 26 Nov 2017 13:41:11 +0100 Subject: [PATCH] Noalyss_SQL :: count add a space --- include/lib/noalyss_sql.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lib/noalyss_sql.class.php b/include/lib/noalyss_sql.class.php index 9f2e8ca81..0e23ca832 100644 --- a/include/lib/noalyss_sql.class.php +++ b/include/lib/noalyss_sql.class.php @@ -400,7 +400,7 @@ abstract class Noalyss_SQL extends Data_SQL return $a_return; } public function count($p_where="",$p_array=null) { - $count=$this->cn->get_value("select count(*) from $this->table".$p_where,$p_array); + $count=$this->cn->get_value("select count(*) from $this->table ".$p_where,$p_array); return $count; } /**