diff options
author | Thomas Lange <code@nerdmind.de> | 2017-03-06 14:00:33 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-03-06 14:00:33 +0100 |
commit | 6bcdaa8ed6d45d8c852bf2d2e37b07446861c94b (patch) | |
tree | 7d93fa4750075d6faa3a405410cd74fa8ced4007 /admin/post/update.php | |
parent | 04e13d6cb15d8dbcc9e68f135a40df123074d3ea (diff) | |
download | blog-6bcdaa8ed6d45d8c852bf2d2e37b07446861c94b.tar.gz blog-6bcdaa8ed6d45d8c852bf2d2e37b07446861c94b.tar.xz blog-6bcdaa8ed6d45d8c852bf2d2e37b07446861c94b.zip |
Hardcoded PDO class name replaced with $Database class.
Diffstat (limited to 'admin/post/update.php')
-rw-r--r-- | admin/post/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/post/update.php b/admin/post/update.php index 875d947..65b9045 100644 --- a/admin/post/update.php +++ b/admin/post/update.php @@ -44,7 +44,7 @@ try { try { $userIDs = $Database->query(sprintf('SELECT id FROM %s ORDER BY fullname ASC', User\Attribute::TABLE)); - foreach($userIDs->fetchAll(PDO::FETCH_COLUMN) as $userID) { + foreach($userIDs->fetchAll($Database::FETCH_COLUMN) as $userID) { $User = User\Factory::build($userID); $userAttributes[] = [ 'ID' => $User->attr('id'), |