diff options
author | Paul Mattal <paul@mattal.com> | 2007-09-25 07:00:55 -0400 |
---|---|---|
committer | Paul Mattal <paul@mattal.com> | 2007-09-25 07:00:55 -0400 |
commit | 220708c4ca12a581e175236606401ea0beae9a40 (patch) | |
tree | 23d5be27ba85398eec3a746441d4570237b88f89 /web/html/pkgsubmit.php | |
parent | c5907e3845c1eeb0a80f4226dfac2fa9d27d52ba (diff) | |
parent | 4e4f2728c1c4e4bf030b579dc41b530b06166271 (diff) | |
download | aurweb-220708c4ca12a581e175236606401ea0beae9a40.tar.xz |
Merge commit 'eliott/master' into testing
Diffstat (limited to 'web/html/pkgsubmit.php')
-rw-r--r-- | web/html/pkgsubmit.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 89ecfa4..24aeea5 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -9,7 +9,9 @@ include("config.inc"); # configuration file with dir locations set_lang(); # this sets up the visitor's language check_sid(); # see if they're still logged in html_header(); # print out the HTML header -print "<center>\n"; +echo "<div class=\"pgbox\">\n"; +echo " <div class=\"pgboxtitle\"><span class=\"f3\">".__("Submit")."</span></div>\n"; +echo " <div class=\"pgboxbody\">\n"; # Debugging $DBUG = 0; @@ -665,8 +667,8 @@ if ($_COOKIE["AURSID"]) { print __("You must create an account before you can upload packages."); print "<br />\n"; } - -print "</center>\n"; +echo " </div>\n"; +echo "</div>\n"; html_footer("\$Id$"); # vim: ts=2 sw=2 noet ft=php ?> |