Commit: e13d591b9136f9fc2d1bb868301b3540eea3821b Author: Sobak <[email protected]> Mon, 17 Mar 2014 20:32:52 +0100 Parents: fe7ea4178c7ad197311c8df409f2a5189fbe5890 Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=e13d591b9136f9fc2d1bb868301b3540eea3821b Log: Fixed broken personal quicksearch (sorry) Changed paths: M www/index.php Diff: diff --git a/www/index.php b/www/index.php index e1de937..967fcbd 100644 --- a/www/index.php +++ b/www/index.php @@ -100,9 +100,9 @@ to a random open bug.</p> 'Open Documentation bugs' => '&bug_type=Documentation+Problem', 'Open Documentation bugs (with patches)' => '&bug_type=Documentation+Problem&patch=Y' ); - + if (!empty($_SESSION["user"])) { - $searches['Your assigned bugs'] = '&assign='.urlencode($_SESSION['user']); + $searches['Your assigned bugs'] = '&assign='.urlencode($_SESSION['user']); } foreach ($searches as $title => $sufix) { -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
