summaryrefslogtreecommitdiffstats
path: root/web/html
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-07-02 07:04:06 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-07-02 08:02:41 +0200
commite141c6c38cad0e0572e16c24f1caf59acb75b3e7 (patch)
tree0f98af6a84780bbf5f0936a339bf82ea71d9bc8e /web/html
parent7b57e0e1b383bbad9a0fcbe405e3d0bb10164570 (diff)
downloadaurweb-e141c6c38cad0e0572e16c24f1caf59acb75b3e7.tar.xz
Fix title in package requests list
Use "Requests" instead of "File Request" as title for the package request list. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r--web/html/pkgreq.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/web/html/pkgreq.php b/web/html/pkgreq.php
index 401b60c..674f1c1 100644
--- a/web/html/pkgreq.php
+++ b/web/html/pkgreq.php
@@ -8,8 +8,6 @@ include_once("pkgfuncs.inc.php");
set_lang();
check_sid();
-html_header(__("File Request"));
-
if (!isset($base_id)) {
if (!check_user_privileges()) {
header('Location: /');
@@ -62,8 +60,11 @@ if (!isset($base_id)) {
}
$SID = $_COOKIE['AURSID'];
+
+ html_header(__("Requests"));
include('pkgreq_results.php');
} else {
+ html_header(__("File Request"));
include('pkgreq_form.php');
}