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 | |
parent | 04e13d6cb15d8dbcc9e68f135a40df123074d3ea (diff) | |
download | blog-6bcdaa8ed6d45d8c852bf2d2e37b07446861c94b.tar.gz blog-6bcdaa8ed6d45d8c852bf2d2e37b07446861c94b.tar.xz blog-6bcdaa8ed6d45d8c852bf2d2e37b07446861c94b.zip |
Hardcoded PDO class name replaced with $Database class.
-rw-r--r-- | admin/page/insert.php | 2 | ||||
-rw-r--r-- | admin/page/update.php | 2 | ||||
-rw-r--r-- | admin/post/insert.php | 2 | ||||
-rw-r--r-- | admin/post/update.php | 2 | ||||
-rw-r--r-- | system/search/main.php | 6 |
5 files changed, 7 insertions, 7 deletions
diff --git a/admin/page/insert.php b/admin/page/insert.php index 0f421f6..f8a4cbf 100644 --- a/admin/page/insert.php +++ b/admin/page/insert.php @@ -42,7 +42,7 @@ if(HTTP::issetPOST('id', 'user', 'slug', 'name', 'body', 'time_insert', 'time_up 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'), diff --git a/admin/page/update.php b/admin/page/update.php index 0489406..857631d 100644 --- a/admin/page/update.php +++ b/admin/page/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'), diff --git a/admin/post/insert.php b/admin/post/insert.php index ab6bb87..baeacd3 100644 --- a/admin/post/insert.php +++ b/admin/post/insert.php @@ -42,7 +42,7 @@ if(HTTP::issetPOST('id', 'user', 'slug', 'name', 'body', 'time_insert', 'time_up 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'), 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'), diff --git a/system/search/main.php b/system/search/main.php index e27cebf..fe18e7e 100644 --- a/system/search/main.php +++ b/system/search/main.php @@ -21,9 +21,9 @@ $form_data = [ 'Y' => HTTP::GET('y'), ], 'OPTIONS' => [ - 'D' => $D_LIST->fetchAll(PDO::FETCH_COLUMN), - 'M' => $M_LIST->fetchAll(PDO::FETCH_COLUMN), - 'Y' => $Y_LIST->fetchAll(PDO::FETCH_COLUMN), + 'D' => $D_LIST->fetchAll($Database::FETCH_COLUMN), + 'M' => $M_LIST->fetchAll($Database::FETCH_COLUMN), + 'Y' => $Y_LIST->fetchAll($Database::FETCH_COLUMN), ] ]; |