diff options
author | Callan Barrett <wizzomafizzo@gmail.com> | 2008-01-12 23:43:05 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-20 07:21:20 +0100 |
commit | 379e16eebda1ba9bfc45de486e99e480843d086a (patch) | |
tree | d2cd1ea7bd79657b475422ce95aea6b81b8e6894 /web/template | |
parent | d4b07f2b334dada626e4743951cdd6adab87f62e (diff) | |
download | aur-379e16eebda1ba9bfc45de486e99e480843d086a.tar.gz aur-379e16eebda1ba9bfc45de486e99e480843d086a.tar.xz |
Support for verbose page titles
Verbose page titles again
Adds support for more verbose page titles based on current
page and action by user and removes sort by options from
search form as they're obsolete by column links.
Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/header.php b/web/template/header.php index 8e022118..b27015ae 100644 --- a/web/template/header.php +++ b/web/template/header.php @@ -4,7 +4,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print "$LANG\" lang=\"$LANG"; ?>"> <head> - <title>AUR (<?php print $LANG; ?>)</title> + <title>AUR (<?php print $LANG; ?>)<?php if ($title != "") { print " - " . $title; } ?></title> <link rel='stylesheet' type='text/css' href='/css/fonts.css' /> <link rel='stylesheet' type='text/css' href='/css/containers.css' /> <link rel='stylesheet' type='text/css' href='/css/arch.css' /> |