aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--admin/page/insert.php2
-rw-r--r--admin/page/update.php2
-rw-r--r--admin/post/insert.php2
-rw-r--r--admin/post/update.php2
-rw-r--r--system/search/main.php6
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),
]
];