Commit: d82c528149e1ad72ae417bb30b9717806e3d63a6 Author: Ben Ramsey <[email protected]> Mon, 6 Apr 2015 10:25:58 -0500 Parents: 2b0b847f72c282d552c8505dcf1b2ed18e453e02 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=d82c528149e1ad72ae417bb30b9717806e3d63a6 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
