aboutsummaryrefslogtreecommitdiff
path: root/admin/news/functions.php
diff options
context:
space:
mode:
authorjhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6>2009-12-22 20:58:08 -0500
committerjhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6>2009-12-22 20:58:08 -0500
commit6c42f30a0424cbf1c1af63f21d7f5074a4653c7a (patch)
tree9c892117e219e532951e6761a5211cfc22711fda /admin/news/functions.php
parent61148024a245a7bd3cdc9f978791b510cde40961 (diff)
downloadbayonetcms-6c42f30a0424cbf1c1af63f21d7f5074a4653c7a.tar.gz
(OC) tried fixing the insert in NewAdmin(), no luck
git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@394 c5b2fb0a-d05d-0410-98c8-828840a80ff6
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>";