Commit: 138b5651793850a8fc537ab79c510036eb4cafdb Author: Hannes Magnusson <[email protected]> Thu, 21 Nov 2013 20:10:30 -0800 Parents: 4fd05a77aa5fadff5e7708dc6477f27c7bfcbbc4 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=138b5651793850a8fc537ab79c510036eb4cafdb Log: There are part of help really Changed paths: M results.php M search.php Diff: diff --git a/results.php b/results.php index 055fb08..58dd47d 100644 --- a/results.php +++ b/results.php @@ -7,7 +7,7 @@ include $_SERVER['DOCUMENT_ROOT'] . '/include/results.inc'; function exit_with_pretty_error($title, $header, $msg) { if ($title) { - site_header($title, array("noindex", 'layout_span' => 12)); + site_header($title, array("noindex", 'layout_span' => 12, "current" => "help")); } echo '<h2>' .$header. '</h2>'; echo '<p>' .$msg. '</p>'; @@ -59,7 +59,7 @@ site_header( 'Search results', array( 'noindex', - 'current' => 'docs', + 'current' => 'help', 'layout_span' => 12, ) ); diff --git a/search.php b/search.php index 85ad39c..21844f5 100644 --- a/search.php +++ b/search.php @@ -109,7 +109,7 @@ else { "href" => $MYSITE . "phpnetimprovedsearch.src", "title" => "Add PHP.net search" ); - site_header("Search", array("link" => array($link), "current" => "docs")); + site_header("Search", array("link" => array($link), "current" => "help")); google_cse(); site_footer(); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
