diff options
author | pjmattal <pjmattal> | 2005-04-14 03:15:52 +0000 |
---|---|---|
committer | pjmattal <pjmattal> | 2005-04-14 03:15:52 +0000 |
commit | f748d9a4718b928223f45873c2e6627beb33843b (patch) | |
tree | fc41841cc8bd4c4eb1b7704e904f36cbfd7b8588 | |
parent | 2c6ca1126add93e50ae68bcf084cd5aadfdf271f (diff) | |
download | aurweb-f748d9a4718b928223f45873c2e6627beb33843b.tar.xz |
fixed package category to default to 1 (none) instead of 19 which doesn't exist
-rw-r--r-- | web/html/pkgsubmit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index a73ca5a..840ff30 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -480,7 +480,7 @@ if ($_COOKIE["AURSID"]) { print __("Package Category").":</td>\n"; print " <td span='f4' align='left'>"; print "<select name='category'>"; - print "<option value='19'> " . __("Select Category") . "</option>"; + print "<option value='1'> " . __("Select Category") . "</option>"; while (list($k, $v) = each($pkg_categories)) { print "<option value='".$k."'> " . $v . "</option>"; } |