diff options
Diffstat (limited to 'web/html/pkgmgmnt.php')
-rw-r--r-- | web/html/pkgmgmnt.php | 8 |
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$"); |