1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 17:44:37 +02:00

For the max() method when using $where

This commit is contained in:
Cameron
2019-02-18 12:54:43 -08:00
parent f128b13824
commit 7c9ceb79bf

View File

@@ -1679,7 +1679,7 @@ class e_db_pdo implements e_db
if(!empty($where))
{
$qry .= "WHERE ".$where;
$qry .= " WHERE ".$where;
}
return $this->retrieve($qry);