aboutsummaryrefslogtreecommitdiff
path: root/admin/news/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/news/functions.php')
-rw-r--r--admin/news/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/news/functions.php b/admin/news/functions.php
index a098e46..f98c4e2 100644
--- a/admin/news/functions.php
+++ b/admin/news/functions.php
@@ -94,7 +94,7 @@ function EditNews($news_id){
global $db;
echo "<select name=\"author\">";
- $result = $db->Query("SELECT `user_id`, `lastname` FROM `bayonet_users` WHERE `active` = 1 ORDER BY `username` ASC");
+ $result = $db->Query("SELECT `user_id`, `lastname` FROM `bayonet_users` ORDER BY `username` ASC");
while(($row = $db->Fetch($result))!= false){
if($author_id == $row['user_id'])
echo "<option value=\"{$row['user_id']}\" selected>{$row['lastname']}</option>";