Commit: a5f9c345b0149d7e56af52478ec9f44933658dd2 Author: Hannes Magnusson <[email protected]> Sat, 7 Mar 2015 14:25:48 -0800 Parents: 49bf3d5ad99a029d5ecfb03d0cb4ea0885629ae6 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=a5f9c345b0149d7e56af52478ec9f44933658dd2 Log: fix warning until the genereated files have been updated Changed paths: M include/shared-manual.inc Diff: diff --git a/include/shared-manual.inc b/include/shared-manual.inc index a579a7b..f459734 100644 --- a/include/shared-manual.inc +++ b/include/shared-manual.inc @@ -358,7 +358,7 @@ function manual_navigation_related(array $setup) { function manual_navigation_deprecated(array $setup) { $methods = array(); - foreach($setup['toc_deprecated'] as $entry) { + foreach((array)$setup['toc_deprecated'] as $entry) { $methods[] = array( "title" => manual_navigation_methodname($entry[1]), "link" => $entry[0], -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
