Only retrieve query results as an associative array, omitting the numeric index

develop
Sven Slootweg 12 years ago
parent 1f45289ea3
commit 0dd070a809

@ -75,7 +75,7 @@ class CachedPDO extends PDO
}
$statement->execute();
$result = $statement->fetchAll();
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
mc_set($cache_hash, $result, $expiry);

Loading…
Cancel
Save