Commit: a921be377934b68a9921ceae5db34e84c61a695e Author: Raphael Geissert <[email protected]> Wed, 26 Sep 2012 18:10:09 -0500 Parents: 6d41525e499c36c93dc3f3599c2f5bb2ce904835 Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=a921be377934b68a9921ceae5db34e84c61a695e Log: Add missing "global $security_distro_people" It was missing for the change in 6d41525 to actually work. Thanks to David Soria Parra for spotting it. Changed paths: M include/functions.php Diff: diff --git a/include/functions.php b/include/functions.php index 7078bfd..d5cb368 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1344,7 +1344,7 @@ function incoming_details_are_valid($in, $initial = 0, $logged_in = false) */ function get_package_mail($package_name, $bug_id = false, $bug_type = 'Bug') { - global $dbh, $bugEmail, $docBugEmail, $secBugEmail; + global $dbh, $bugEmail, $docBugEmail, $secBugEmail, $security_distro_people; $to = array(); $params = '-f [email protected]'; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
