summaryrefslogtreecommitdiffstats
path: root/web/html
diff options
context:
space:
mode:
authoreric <eric>2004-06-24 21:08:35 +0200
committereric <eric>2004-06-24 21:08:35 +0200
commit1f62f86af5225643f2a7d72c1a050c46ffc37477 (patch)
tree491ff279b1ad75d461b071f993d6978de19aac3f /web/html
parent9c6ec26c3279ca3e1d186196d229449d9501c386 (diff)
downloadaur-1f62f86af5225643f2a7d72c1a050c46ffc37477.tar.gz
aur-1f62f86af5225643f2a7d72c1a050c46ffc37477.tar.xz
getting closer to printing package search results - also fixed some XHTML stuff
Diffstat (limited to 'web/html')
-rw-r--r--web/html/account.php6
-rw-r--r--web/html/index.php4
-rw-r--r--web/html/logout.php2
-rw-r--r--web/html/pkgmgmnt.php2
-rw-r--r--web/html/pkgsearch.php2
-rw-r--r--web/html/pkgsubmit.php2
-rw-r--r--web/html/pkgvote.php2
-rw-r--r--web/html/template.php2
-rw-r--r--web/html/testpo.php4
9 files changed, 13 insertions, 13 deletions
diff --git a/web/html/account.php b/web/html/account.php
index a00a5e53..0975ab7c 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -29,7 +29,7 @@ if (isset($_COOKIE["AURSID"])) {
} else {
# a non-privileged user is trying to access the search page
#
- print __("You are not allowed to access this area.")."<br/>\n";
+ print __("You are not allowed to access this area.")."<br />\n";
}
} elseif ($_REQUEST["Action"] == "DisplayAccount") {
@@ -73,7 +73,7 @@ if (isset($_COOKIE["AURSID"])) {
if ($atype == "Trusted User" || $atype == "Developer") {
# display the search page if they're a TU/dev
#
- print __("Use this form to search existing accounts.")."<br/>\n";
+ print __("Use this form to search existing accounts.")."<br />\n";
search_accounts_form();
} else {
@@ -96,7 +96,7 @@ if (isset($_COOKIE["AURSID"])) {
# normal user editing themselves.
#
print __("Use this form to update your account.");
- print "<br/>";
+ print "<br />";
print __("Leave the password fields blank to keep your same password.");
display_account_form($atype, "UpdateAccount", $row["Username"],
$row["AccountType"], $row["Suspended"], $row["Email"],
diff --git a/web/html/index.php b/web/html/index.php
index 09e87ccc..67ff657d 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -85,7 +85,7 @@ if (!isset($_COOKIE["AURSID"])) {
#
print "<form action='/index.php' method='post'>\n";
if ($login_error) {
- print "<span class='error'>" . $login_error . "</span><br/>\n";
+ print "<span class='error'>" . $login_error . "</span><br />\n";
}
print "<table border='0' cellpadding='0' cellspacing='0' width='100%'>\n";
print "<tr>\n";
@@ -97,7 +97,7 @@ if (!isset($_COOKIE["AURSID"])) {
print "<td><input type='password' name='pass' size='30' maxlength='32'></td>";
print "</tr>\n";
print "<tr>\n";
- print "<td colspan='2' align='right'>&nbsp;<br/>";
+ print "<td colspan='2' align='right'>&nbsp;<br />";
print "<input type='submit' class='button'";
print " value='".__("Login")."'></td>";
print "</tr>\n";
diff --git a/web/html/logout.php b/web/html/logout.php
index a81c6455..a25da7c5 100644
--- a/web/html/logout.php
+++ b/web/html/logout.php
@@ -15,7 +15,7 @@ if (isset($_COOKIE["AURSID"])) {
}
html_header(); # print out the HTML header
-print __("You have been successfully logged out.")."<br/>\n";
+print __("You have been successfully logged out.")."<br />\n";
html_footer("\$Id$");
diff --git a/web/html/pkgmgmnt.php b/web/html/pkgmgmnt.php
index b1768dbf..5544016f 100644
--- a/web/html/pkgmgmnt.php
+++ b/web/html/pkgmgmnt.php
@@ -9,7 +9,7 @@ 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.
#
-print __("Under construction...")."<br/>\n";
+print __("Under construction...")."<br />\n";
html_footer("\$Id$");
diff --git a/web/html/pkgsearch.php b/web/html/pkgsearch.php
index b47ee954..6b23265d 100644
--- a/web/html/pkgsearch.php
+++ b/web/html/pkgsearch.php
@@ -38,7 +38,7 @@ if ($atype && $_REQUEST["Action"] == "Something") {
#
pkg_search_page();
}
-print __("Under construction...")."<br/>\n";
+print __("Under construction...")."<br />\n";
html_footer("\$Id$");
diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php
index c9465a1d..60b6dc52 100644
--- a/web/html/pkgsubmit.php
+++ b/web/html/pkgsubmit.php
@@ -9,7 +9,7 @@ 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.
#
-print __("Under construction...")."<br/>\n";
+print __("Under construction...")."<br />\n";
html_footer("\$Id$");
diff --git a/web/html/pkgvote.php b/web/html/pkgvote.php
index 594ec168..eed4a357 100644
--- a/web/html/pkgvote.php
+++ b/web/html/pkgvote.php
@@ -9,7 +9,7 @@ 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.
#
-print __("Under construction...")."<br/>\n";
+print __("Under construction...")."<br />\n";
html_footer("\$Id$");
diff --git a/web/html/template.php b/web/html/template.php
index 9ae001e4..2a870ec7 100644
--- a/web/html/template.php
+++ b/web/html/template.php
@@ -9,7 +9,7 @@ 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.
#
-print __("Hi, this is worth reading!")."<br/>\n";
+print __("Hi, this is worth reading!")."<br />\n";
html_footer("\$Id$"); # Use the $Id$ keyword
diff --git a/web/html/testpo.php b/web/html/testpo.php
index 7f2f1d90..64c4b3e9 100644
--- a/web/html/testpo.php
+++ b/web/html/testpo.php
@@ -34,8 +34,8 @@ print __("My current language tag is: '%s'.", array($LANG));
print "</p>\n";
print "<ul>\n";
-print __("Hello, world!")."<br/>\n";
-print __("Hello, again!")."<br/>\n";
+print __("Hello, world!")."<br />\n";
+print __("Hello, again!")."<br />\n";
print "</ul>\n";
print "</body>\n</html>";