summaryrefslogtreecommitdiffstats
path: root/web/html/pkgmgmnt.php
diff options
context:
space:
mode:
authoreric <eric>2004-06-28 19:37:02 +0000
committereric <eric>2004-06-28 19:37:02 +0000
commit4b80bc34ffb738ef3cd1a7944e8716d3e8140565 (patch)
treed371144998ca570b0808be07ff10c3a697a37bac /web/html/pkgmgmnt.php
parentefcca46f26247ee69b33cb1effb0d34077817a80 (diff)
downloadaurweb-4b80bc34ffb738ef3cd1a7944e8716d3e8140565.tar.xz
re-working pkgsearch, NumVotes add to Packages table
Diffstat (limited to 'web/html/pkgmgmnt.php')
-rw-r--r--web/html/pkgmgmnt.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/web/html/pkgmgmnt.php b/web/html/pkgmgmnt.php
index 5544016..98c8400 100644
--- a/web/html/pkgmgmnt.php
+++ b/web/html/pkgmgmnt.php
@@ -6,10 +6,12 @@ check_sid(); # see if they're still logged in
html_header(); # print out the HTML header
-# Any text you print out to the visitor, use the __() function
-# for i18n support. See 'testpo.php' for more details.
+# vistor has requested package management for a specific package
+#
+print __("Manage package ID: %s", array($_REQUEST["ID"])) . "<br />\n";
+
+# NOTE: managing an orphaned package will automatically force adoption
#
-print __("Under construction...")."<br />\n";
html_footer("\$Id$");