summaryrefslogtreecommitdiffstats
path: root/web/html/pkgsubmit.php
diff options
context:
space:
mode:
authortardo <tardo@nagi-fanboi.net>2007-09-26 00:40:48 +0200
committertardo <tardo@nagi-fanboi.net>2007-09-26 00:40:48 +0200
commitb76faddb10fb53266e4f934a58edf30ba7935025 (patch)
treeced58337bcbc070c67fd1fc659bfb9001246b9bc /web/html/pkgsubmit.php
parent1769285c36f333cc06be91332984686f64a74b88 (diff)
parent7c7685ce82f1779f6f991533df7f5e6d6ac8fe21 (diff)
downloadaur-b76faddb10fb53266e4f934a58edf30ba7935025.tar.gz
aur-b76faddb10fb53266e4f934a58edf30ba7935025.tar.xz
Merge branch 'testing' of git://git.mattal.com/aur into test
Fixed regressions.
Diffstat (limited to 'web/html/pkgsubmit.php')
-rw-r--r--web/html/pkgsubmit.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php
index 89ecfa44..24aeea5c 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
?>