mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Fix weird title setting on search page
This is to fix FS#9610, pretty simple patch Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com> Signed-off-by: Simo Leone <simo@archlinux.org>
This commit is contained in:
parent
172dbf696b
commit
e0582fd0e2
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ if (isset($_GET['ID'])) {
|
|||
}
|
||||
} else if (!empty($_GET['K'])) {
|
||||
$title = "Search: " . $_GET['K'];
|
||||
} else if (isset($_GET['do_MyPackages'])) {
|
||||
} else if (!empty($_GET['do_MyPackages'])) {
|
||||
$title = __("My Packages");
|
||||
} else {
|
||||
$title = __("Packages");
|
||||
|
|
Loading…
Add table
Reference in a new issue