Commit: f496b51562244d5b110115952ed2905ec912f03c Author: Peter Cowburn <[email protected]> Wed, 24 Jun 2015 13:58:53 +0100 Parents: 05e649de95d16dba1884f15bf74cac74258a5cd0 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=f496b51562244d5b110115952ed2905ec912f03c Log: fix __debugInfo() redirect (bug #69918) Bugs: https://bugs.php.net/69918 Changed paths: M error.php Diff: diff --git a/error.php b/error.php index 8eb7ab7..5e221a8 100644 --- a/error.php +++ b/error.php @@ -376,7 +376,6 @@ $uri_aliases = array ( "__destruct" => "language.oop5.decon", "__call" => "language.oop5.overloading", "__callstatic" => "language.oop5.overloading", - "__debuginfo" => "language.oop5.overloading", "__get" => "language.oop5.overloading", "__set" => "language.oop5.overloading", "__isset" => "language.oop5.overloading", @@ -385,6 +384,7 @@ $uri_aliases = array ( "__wakeup" => "language.oop5.magic", "__tostring" => "language.oop5.magic", "__set_state" => "language.oop5.magic", + "__debuginfo" => "language.oop5.magic", "__clone" => "language.oop5.cloning", "throw" => "language.exceptions", -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
