Commit: 57c032532a5fcaaf789c3db100435a44f14885dd Author: Levi Morrison <[email protected]> Tue, 17 Sep 2013 16:32:16 -0600 Parents: e6e2f1f3713b9b21fbcfed9e88cdc205d0b203c7 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=57c032532a5fcaaf789c3db100435a44f14885dd Log: Fixed some pages that were not full-width but could/should be. Changed paths: M mirroring.php M results.php M styles/theme.css M support.php Diff: diff --git a/mirroring.php b/mirroring.php index 550cc4b..2526856 100644 --- a/mirroring.php +++ b/mirroring.php @@ -20,7 +20,13 @@ $SIDEBAR_DATA = ' '; */ -site_header("Mirroring The PHP Website", array("current" => "community")); +site_header( + 'Mirroring The PHP Website', + array( + 'current' => 'community', + 'layout_span' => 12, + ) +); // Get a minute to print out for the cron example function make_seed() diff --git a/results.php b/results.php index 677ab5c..e874201 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")); + site_header($title, array("noindex", 'layout_span' => 12)); } echo '<h2>' .$header. '</h2>'; echo '<p>' .$msg. '</p>'; @@ -55,7 +55,14 @@ if (is_array($data)) { $res = unserialize($data); // HTTP status line is passed on, signifies an error -site_header('Search results', array("noindex", "current" => "docs")); +site_header( + 'Search results', + array( + 'noindex', + 'current' => 'docs', + 'layout_span' => 12, + ) +); if (!is_array($res)) { exit_with_pretty_error(null, 'Internal error', 'Please try again later'); diff --git a/styles/theme.css b/styles/theme.css index 96736e0..6f73435 100755 --- a/styles/theme.css +++ b/styles/theme.css @@ -1020,7 +1020,7 @@ body.downloads #layout .span6 { body.docs .row-fluid .layout-menu.span3 { width:18%; } - body.docs .row-fluid #layout-content { + body.docs .row-fluid #layout-content.span9 { width:81%; margin-left:1%; } diff --git a/support.php b/support.php index 3c60157..f848217 100644 --- a/support.php +++ b/support.php @@ -2,7 +2,13 @@ // $Id$ $_SERVER['BASE_PAGE'] = 'support.php'; include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc'; -site_header("Getting Help", array("current" => "help")); +site_header( + 'Getting Help', + array( + 'current' => 'help', + 'layout_span' => 12, + ) +); ?> <h1>Documentation</h1> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
