mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
Remove indentation in array arguments (#860)
This commit is contained in:
@@ -50,10 +50,8 @@ $content .= "</div>";
|
||||
|
||||
echo $content;
|
||||
|
||||
site_footer(
|
||||
[
|
||||
"atom" => "/feed.atom",
|
||||
"elephpants" => true,
|
||||
"sidebar" => $panels,
|
||||
]
|
||||
);
|
||||
site_footer([
|
||||
"atom" => "/feed.atom",
|
||||
"elephpants" => true,
|
||||
"sidebar" => $panels,
|
||||
]);
|
||||
|
||||
@@ -35,8 +35,6 @@ site_header("ElePHPant", ["current" => "footer"]);
|
||||
|
||||
<?php
|
||||
// Print the common footer.
|
||||
site_footer(
|
||||
[
|
||||
'elephpants' => true
|
||||
]
|
||||
);
|
||||
site_footer([
|
||||
'elephpants' => true
|
||||
]);
|
||||
|
||||
12
index.php
12
index.php
@@ -225,10 +225,8 @@ $announcements
|
||||
SIDEBAR_DATA;
|
||||
|
||||
// Print the common footer.
|
||||
site_footer(
|
||||
[
|
||||
"atom" => "/feed.atom", // Add a link to the feed at the bottom
|
||||
'elephpants' => true,
|
||||
'sidebar' => $SIDEBAR
|
||||
]
|
||||
);
|
||||
site_footer([
|
||||
"atom" => "/feed.atom", // Add a link to the feed at the bottom
|
||||
'elephpants' => true,
|
||||
'sidebar' => $SIDEBAR
|
||||
]);
|
||||
|
||||
10
sites.php
10
sites.php
@@ -189,7 +189,7 @@ site_header("A Tourist's Guide", ["current" => "help"]);
|
||||
<h2 id="windows" class="content-header"><a href="https://windows.php.net/">windows.php.net</a>: PHP for Windows</h2>
|
||||
|
||||
<p class="content-box">
|
||||
This site is dedicated to supporting PHP on Microsoft Windows.
|
||||
This site is dedicated to supporting PHP on Microsoft Windows.
|
||||
It also supports ports of PHP extensions or features as well as providing special builds for the various Windows architectures.
|
||||
</p>
|
||||
|
||||
@@ -222,8 +222,6 @@ $SIDEBAR = <<<SIDEBAR_DATA
|
||||
SIDEBAR_DATA;
|
||||
|
||||
// Print the common footer.
|
||||
site_footer(
|
||||
[
|
||||
'sidebar' => $SIDEBAR
|
||||
]
|
||||
);
|
||||
site_footer([
|
||||
'sidebar' => $SIDEBAR
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user