// fix norm && added PDO::FETCH_ASSOC in method fetch() for PDO

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11029 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2011-12-07 17:30:32 +00:00
parent 4aa4094808
commit 7873905bb5
4 changed files with 105 additions and 92 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ class DbPDOCore extends Db
{
if (!$result)
$result = $this->result;
return $result->fetch();
return $result->fetch(PDO::FETCH_ASSOC);
}
/**