Alexander Nicolaysen Sørnes : Edit app bundle: Only show accepted apps
Module: appdb Branch: master Commit: a038ccf82cd5162482110185b5fdee2237175b2a URL: http://source.winehq.org/git/appdb.git/?a=commit;h=a038ccf82cd5162482110185b... Author: Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com> Date: Sun Oct 25 17:35:13 2009 +0100 Edit app bundle: Only show accepted apps --- admin/editBundle.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/admin/editBundle.php b/admin/editBundle.php index b0523e6..03ac946 100644 --- a/admin/editBundle.php +++ b/admin/editBundle.php @@ -8,7 +8,7 @@ if(!$_SESSION['current']->hasPriv("admin")) function build_app_list() { - $hResult = query_parameters("SELECT appId, appName FROM appFamily ORDER BY appName"); + $hResult = application::objectGetEntries('accepted'); echo "<select name=iAppId size=5 onChange='this.form.submit()'>\n"; while($oRow = query_fetch_object($hResult))
participants (1)
-
Alexander Nicolaysen Sørnes