Commit: 2b13da9454abee46614cc058df3fc03a033eabe8 Author: Sobak <[email protected]> Thu, 12 Jun 2014 20:44:06 +0200 Parents: 46a74d234c026fea0928764e940a729801d604b5 Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=2b13da9454abee46614cc058df3fc03a033eabe8 Log: Probably fixes bug #67426 (Bug tracker no longer shows quick fixes) It may not work because I don't know actual database content in production. However, it shouldn't break anything more. Bugs: https://bugs.php.net/67426 Changed paths: M www/bug.php Diff: diff --git a/www/bug.php b/www/bug.php index 5c16073..1fb3aa2 100644 --- a/www/bug.php +++ b/www/bug.php @@ -174,7 +174,7 @@ $is_private = isset($is_private) ? $is_private : $bug['private']; // Handle any updates, displaying errors if there were any $RESOLVE_REASONS = $FIX_VARIATIONS = $pseudo_pkgs = array(); -$project = !empty($_GET['project']) ? $_GET['project'] : false; +$project = $bug['project']; // Only fetch stuff when it's really needed if ($edit && $edit < 3) { -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
