diff options
author | Andrea Scarpino <andrea@archlinux.org> | 2011-12-09 10:49:34 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-12-17 14:53:56 +0100 |
commit | 7cb89be81f9113380ee7e3b80d37fbd3b58f77fd (patch) | |
tree | 80160f2082977b1f609df7db1012a8d31bfffbaf /web/html/tu.php | |
parent | 0557f7705ab12c84e53a5f2dc352557b908af511 (diff) | |
download | aurweb-7cb89be81f9113380ee7e3b80d37fbd3b58f77fd.tar.xz |
Set the title in the Trusted User page
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/tu.php')
-rw-r--r-- | web/html/tu.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/html/tu.php b/web/html/tu.php index 6e202c8..6e04353 100644 --- a/web/html/tu.php +++ b/web/html/tu.php @@ -5,7 +5,10 @@ set_include_path(get_include_path() . PATH_SEPARATOR . '../lib'); include_once("aur.inc.php"); set_lang(); check_sid(); -html_header(); + +$title = __("Trusted User"); + +html_header($title); # Default votes per page $pp = 10; |