Fix regression for return empty where sql

This commit is contained in:
Antonio de la Rosa 2016-10-01 05:25:22 +02:00
parent 7aa56b006d
commit 54e8585fa0

View file

@ -782,7 +782,9 @@ class Webmodel {
if($str_conditions=='')
{
$this->conditions="WHERE 1=1";
$str_conditions="WHERE 1=1";
return $str_conditions;
}
else