Commit: b7179d88808a4ddf658d31e605720e4bd2f06cf3 Author: Hannes Magnusson <[email protected]> Tue, 24 Mar 2015 10:40:10 -0700 Parents: 936c79b253c551724fb108b1fd849aaf3cc11511 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=b7179d88808a4ddf658d31e605720e4bd2f06cf3 Log: Fix undefined notice using older phd Changed paths: M include/shared-manual.inc Diff: diff --git a/include/shared-manual.inc b/include/shared-manual.inc index 69021b1..9d330f6 100644 --- a/include/shared-manual.inc +++ b/include/shared-manual.inc @@ -389,6 +389,9 @@ function manual_setup($setup) { //TODO: get rid of this hack to get the related items into manual_footer global $__RELATED; + if (!isset($setup["toc_deprecated"])) { + $setup["toc_deprecated"] = array(); + } $PGI = $setup; // Set base href for this manual page $base = 'manual/' . language_convert($setup['head'][1]) . "/"; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
