Commit: cd20519de7c4f0ae9faa74dd6f677667023b53fe Author: Ben Ramsey <[email protected]> Mon, 6 Apr 2015 10:25:58 -0500 Parents: a2106dccfb40ec7443650617632c37b3c853102a Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=cd20519de7c4f0ae9faa74dd6f677667023b53fe Log: Change the paragraphs in the sidebar to a list. Changed paths: M releases/index.php Diff: diff --git a/releases/index.php b/releases/index.php index 3a43919..324938d 100644 --- a/releases/index.php +++ b/releases/index.php @@ -107,20 +107,24 @@ $SIDEBAR_DATA = ' </div> <div class="panel"> - <div class="headline">Want a PHP serialize()d list of the PHP releases?</div> + <div class="headline">Want a PHP serialized list of the PHP releases?</div> <div class="body"> - <p>Add <a href="?serialize">?serialize</a> to the url</p> - <p>Only want PHP 5 releases? <a href="?serialize&version=5">&version=5</a></p> - <p>The last 3? <a href="?serialize&version=5&max=3">&max=3</a></p> + <ul> + <li>Add <a href="?serialize">?serialize</a> to the url</li> + <li>Only want PHP 5 releases? <a href="?serialize&version=5">&version=5</a></li> + <li>The last 3? <a href="?serialize&version=5&max=3">&max=3</a></li> + </ul> </div> </div> <div class="panel"> - <div class="headline">Want a json_encode()ded list of the PHP releases?</div> + <div class="headline">Want a JSON list of the PHP releases?</div> <div class="body"> - <p>Add <a href="?json">?json</a> to the url</p> - <p>Only want PHP 5 releases? <a href="?json&version=5">&version=5</a></p> - <p>The last 3? <a href="?json&version=5&max=3">&max=3</a></p> + <ul> + <li>Add <a href="?json">?json</a> to the url</li> + <li>Only want PHP 5 releases? <a href="?json&version=5">&version=5</a></li> + <li>The last 3? <a href="?json&version=5&max=3">&max=3</a></li> + </ul> </div> </div> '; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
