summaryrefslogtreecommitdiffstats
path: root/web/html/pkgmgmnt.php
diff options
context:
space:
mode:
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 5544016f..98c84006 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$");