Use PDO::FETCH_ASSOC for listings

This commit is contained in:
ruan 2018-05-31 10:33:44 +02:00
parent 5857a0d374
commit 87e7b25fa2
No known key found for this signature in database
GPG Key ID: 0D2EC1C52E469C0B

View File

@ -158,7 +158,7 @@ class Page {
$st->execute();
$rows = $st->fetchAll();
$rows = $st->fetchAll(PDO::FETCH_ASSOC);
$st->closeCursor();