Commit: e80073ba59a657cd2f06ba51f4d9eb539ec7bbae
Author: Levi Morrison <[email protected]> Fri, 14 Mar 2014 09:38:07 -0600
Parents: a0c92b9c7e92d15bf2903c70eaa16da813188665
Branches: master
Link:
http://git.php.net/?p=web/php.git;a=commitdiff;h=e80073ba59a657cd2f06ba51f4d9eb539ec7bbae
Log:
Standardized date format in Changelog
While there I improved the layout and colors.
Changed paths:
M ChangeLog-5.php
M styles/changelog.css
diff --git a/ChangeLog-5.php b/ChangeLog-5.php
index 41894e1..f22b223 100644
--- a/ChangeLog-5.php
+++ b/ChangeLog-5.php
@@ -7,12 +7,18 @@ function bugfix($number) { echo "Fixed bug "; bugl($number); }
function bugl($number) { echo "<a
href=\"http://bugs.php.net/$number\">#$number</a>"; }
function peclbugfix($number) { echo "Fixed PECL bug "; bugl($number); }
function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?id=$number\">#$number</a>"; }
+function release_date($in) {
+ $time = strtotime($in);
+ $human_readable = date('d M Y', $time);
+ $for_tools = date('Y-m-d', $time);
+ echo "<time class='releasedate'
datetime='{$for_tools}'>{$human_readable}</time>";
+}
?>
<h1>PHP 5 ChangeLog</h1>
<section class="version" id="5.5.10"><!-- {{{ 5.5.10 -->
<h3>Version 5.5.10</h3>
-<b>6-Mar-2014</b>
+<?php release_date('6-Mar-2014'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(66574); ?> (Allow multiple paths in
php_ini_scanned_path).</li>
@@ -57,7 +63,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.26"><!-- {{{ 5.4.26 -->
<h3>Version 5.4.26</h3>
-<b>06-Mar-2014</b>
+<?php release_date('06-Mar-2014'); ?>
<ul><li>JSON:
<ul>
<li><?php bugfix(65753); ?> (JsonSerializeable couldn't implement on module
extension)</li>
@@ -84,7 +90,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.9"><!-- {{{ 5.5.9 -->
<h3>Version 5.5.9</h3>
-<b>6-Feb-2014</b>
+<?php release_date('6-Feb-2014'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(66509); ?> (copy() arginfo has changed starting from
5.4).</li>
@@ -129,7 +135,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.25"><!-- {{{ 5.4.25 -->
<h3>Version 5.4.25</h3>
-<b>06-Feb-2014</b>
+<?php release_date('06-Feb-2014'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(66286); ?> (Incorrect object comparison with
inheritance).</li>
@@ -152,7 +158,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.8"><!-- {{{ 5.5.8 -->
<h3>Version 5.5.8</h3>
-<b>9-Jan-2014</b>
+<?php release_date('9-Jan-2014'); ?>
<ul><li>Core:
<ul>
<li>Disallowed JMP into a finally block.</li>
@@ -224,7 +230,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.24"><!-- {{{ 5.4.24 -->
<h3>Version 5.4.24</h3>
-<b>09-Jan-2014</b>
+<?php release_date('09-Jan-2014'); ?>
<ul><li>Core:
<ul>
<li>Added validation of class names in the autoload process.</li>
@@ -275,7 +281,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.7"><!-- {{{ 5.5.7 -->
<h3>Version 5.5.7</h3>
-<b>12-Dec-2013</b>
+<?php release_date('12-Dec-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(66094); ?> (unregister_tick_function tries to cast a
Closure to a string).</li>
@@ -306,7 +312,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.6"><!-- {{{ 5.5.6 -->
<h3>Version 5.5.6</h3>
-<b>14-Nov-2013</b>
+<?php release_date('14-Nov-2013'); ?>
<ul><li>Core:
<ul>
<li>Improved performance of array_merge() and func_get_args() by eliminating
useless copying.</li>
@@ -351,7 +357,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.23"><!-- {{{ 5.4.23 -->
<h3>Version 5.4.23</h3>
-<b>12-Dec-2013</b>
+<?php release_date('12-Dec-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(66094); ?> (unregister_tick_function tries to cast a
Closure to a string).</li>
@@ -383,7 +389,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.22"><!-- {{{ 5.4.22 -->
<h3>Version 5.4.22</h3>
-<b>14-Nov-2013</b>
+<?php release_date('14-Nov-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(65911); ?> (scope resolution operator - strange behavior
with $this).</li>
@@ -423,7 +429,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.5"><!-- {{{ 5.5.5 -->
<h3>Version 5.5.5</h3>
-<b>17-Oct-2013</b>
+<?php release_date('17-Oct-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(64979); ?> (Wrong behavior of static variables in closure
generators).</li>
@@ -499,7 +505,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.21"><!-- {{{ 5.4.21 -->
<h3>Version 5.4.21</h3>
-<b>17-Oct-2013</b>
+<?php release_date('17-Oct-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(65322); ?> (compile time errors won't trigger auto
loading).</li>
@@ -539,7 +545,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.4"><!-- {{{ 5.5.4 -->
<h3>Version 5.5.4</h3>
-<b>19-Sep-2013</b>
+<?php release_date('19-Sep-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(60598); ?> (cli/apache sapi segfault on objects
manipulation).</li>
@@ -583,7 +589,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.20"><!-- {{{ 5.4.20 -->
<h3>Version 5.4.20</h3>
-<b>19-Sep-2013</b>
+<?php release_date('19-Sep-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(60598); ?> (cli/apache sapi segfault on objects
manipulation).</li>
@@ -653,7 +659,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.3"><!-- {{{ 5.5.3 -->
<h3>Version 5.5.3</h3>
-<b>22-Aug-2013</b>
+<?php release_date('22-Aug-2013'); ?>
<ul><li>Openssl:
<ul>
<li>Fixed UMR in fix for CVE-2013-4248.</li>
@@ -663,7 +669,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.19"><!-- {{{ 5.4.19 -->
<h3>Version 5.4.19</h3>
-<b>22-Aug-2013</b>
+<?php release_date('22-Aug-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(64503); ?> (Compilation fails with error: conflicting types
for 'zendparse').</li>
@@ -677,7 +683,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.2"><!-- {{{ 5.5.2 -->
<h3>Version 5.5.2</h3>
-<b>15-Aug-2013</b>
+<?php release_date('15-Aug-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(65372); ?> (Segfault in gc_zval_possible_root when return
reference fails).</li>
@@ -740,7 +746,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.18"><!-- {{{ 5.4.18 -->
<h3>Version 5.4.18</h3>
-<b>15-Aug-2013</b>
+<?php release_date('15-Aug-2013'); ?>
<ul><li>Core:
<ul>
<li>Fixed value of FILTER_SANITIZE_FULL_SPECIAL_CHARS constant (previously
was erroneously set to FILTER_SANITIZE_SPECIAL_CHARS value).</li>
@@ -840,7 +846,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.1"><!-- {{{ 5.5.1 -->
<h3>Version 5.5.1</h3>
-<b>18-Jul-2013</b>
+<?php release_date('18-Jul-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(65254); ?> (Exception not catchable when exception thrown
in autoload with a namespace).</li>
@@ -922,7 +928,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.28"><!-- {{{ 5.3.28 -->
<h3>Version 5.3.28</h3>
-<b>12-Dec-2013</b>
+<?php release_date('12-Dec-2013'); ?>
<ul><li>Openssl:
<ul>
<li>Fixed handling null bytes in subjectAltName (CVE-2013-4248).</li>
@@ -933,7 +939,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.27"><!-- {{{ 5.3.27 -->
<h3>Version 5.3.27</h3>
-<b>11-Jul-2013</b>
+<?php release_date('11-Jul-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(64966); ?> (segfault in
zend_do_fcall_common_helper_SPEC).</li>
@@ -971,7 +977,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.5.0"><!-- {{{ 5.5.0 -->
<h3>Version 5.5.0</h3>
-<b>20-Jun-2013</b>
+<?php release_date('20-Jun-2013'); ?>
<ul>
<li>Drop support for bison < 2.4 when building PHP from GIT source</li>
</ul>
@@ -1480,7 +1486,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.17"><!-- {{{ 5.4.17 -->
<h3>Version 5.4.17</h3>
-<b>04-Jul-2013</b>
+<?php release_date('04-Jul-2013'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(64988); ?> (Class loading order affects E_STRICT
warning).</li>
@@ -1539,7 +1545,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.16"><!-- {{{ 5.4.16 -->
<h3>Version 5.4.16</h3>
-<b>06-Jun-2013</b>
+<?php release_date('06-Jun-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1599,7 +1605,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.26"><!-- {{{ 5.3.26 -->
<h3>Version 5.3.26</h3>
-<b>06-Jun-2013</b>
+<?php release_date('06-Jun-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1643,7 +1649,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.15"><!-- {{{ 5.4.15 -->
<h3>Version 5.4.15</h3>
-<b>09-May-2013</b>
+<?php release_date('09-May-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1671,7 +1677,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.25"><!-- {{{ 5.3.25 -->
<h3>Version 5.3.25</h3>
-<b>09-May-2013</b>
+<?php release_date('09-May-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1694,7 +1700,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.14"><!-- {{{ 5.4.14 -->
<h3>Version 5.4.14</h3>
-<b>11-April-2013</b>
+<?php echo release_date('11-April-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1728,7 +1734,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.24"><!-- {{{ 5.3.24 -->
<h3>Version 5.3.24</h3>
-<b>11-April-2013</b>
+<?php release_date('11-Apr-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1761,7 +1767,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.13"><!-- {{{ 5.4.13 -->
<h3>Version 5.4.13</h3>
-<b>14-March-2013</b>
+<?php echo release_date('14-March-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1813,7 +1819,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.23"><!-- {{{ 5.3.23 -->
<h3>Version 5.3.23</h3>
-<b>14-March-2013</b>
+<?php echo release_date('14-March-2013'); ?>
<ul>
<li>Phar:
<ul>
@@ -1837,7 +1843,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.12"><!-- {{{ 5.4.12 -->
<h3>Version 5.4.12</h3>
-<b>21-February-2013</b>
+<?php echo release_date('21-February-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1901,7 +1907,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.22"><!-- {{{ 5.3.22 -->
<h3>Version 5.3.22</h3>
-<b>21-February-2013</b>
+<?php echo release_date('21-February-2013'); ?>
<ul>
<li>Zend Engine:
<ul>
@@ -1941,7 +1947,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.11"><!-- {{{ 5.4.11 -->
<h3>Version 5.4.11</h3>
-<b>17-January-2013</b>
+<?php echo release_date('17-January-2013'); ?>
<ul>
<li>Core:
<ul>
@@ -1986,7 +1992,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.21"><!-- {{{ 5.3.21 -->
<h3>Version 5.3.21</h3>
-<b>17-January-2013</b>
+<?php echo release_date('17-January-2013'); ?>
<ul>
<li>Zend Engine:
<ul>
@@ -2009,7 +2015,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.10"><!-- {{{ 5.4.10 -->
<h3>Version 5.4.10</h3>
-<b>20-December-2012</b>
+<?php echo release_date('20-December-2012'); ?>
<ul>
<li>Core:
<ul>
@@ -2110,7 +2116,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.20"><!-- {{{ 5.3.20 -->
<h3>Version 5.3.20</h3>
-<b>20-December-2012</b>
+<?php echo release_date('20-December-2012'); ?>
<ul>
<li>Zend Engine:
<ul>
@@ -2190,7 +2196,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.9"><!-- {{{ 5.4.9 -->
<h3>Version 5.4.9</h3>
-<b>22-November-2012</b>
+<?php echo release_date('22-November-2012'); ?>
<ul>
<li>Core:
<ul>
@@ -2285,7 +2291,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.19"><!-- {{{ 5.3.19 -->
<h3>Version 5.3.19</h3>
-<b>22-November-2012</b>
+<?php echo release_date('22-November-2012'); ?>
<ul>
<li>Core:
<ul>
@@ -2362,7 +2368,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.8"><!-- {{{ 5.4.8 -->
<h3>Version 5.4.8</h3>
-<b>18-October-2012</b>
+<?php echo release_date('18-October-2012'); ?>
<ul>
<li>CLI server
<ul>
@@ -2468,7 +2474,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.18"><!-- {{{ 5.3.18 -->
<h3>Version 5.3.18</h3>
-<b>18-October-2012</b>
+<?php echo release_date('18-October-2012'); ?>
<ul>
<li>Core
<ul>
@@ -2524,7 +2530,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.7"><!-- {{{ 5.4.7 -->
<h3>Version 5.4.7</h3>
-<b>13-September-2012</b>
+<?php echo release_date('13-September-2012'); ?>
<ul>
<li>Core
<ul>
@@ -2629,7 +2635,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.17"><!-- {{{ 5.3.17 -->
<h3>Version 5.3.17</h3>
-<b>13-September-2012</b>
+<?php echo release_date('13-September-2012'); ?>
<ul>
<li>Core
<ul>
@@ -2701,7 +2707,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.6"><!-- {{{ 5.4.6 -->
<h3>Version 5.4.6</h3>
-<b>16-August-2012</b>
+<?php echo release_date('16-August-2012'); ?>
<ul>
<li>CLI Server
<ul>
@@ -2800,7 +2806,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.16"><!-- {{{ 5.3.16 -->
<h3>Version 5.3.16</h3>
-<b>16-August-2012</b>
+<?php echo release_date('16-August-2012'); ?>
<ul>
<li>Core
<ul>
@@ -2865,7 +2871,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.5"><!-- {{{ 5.4.5 -->
<h3>Version 5.4.5</h3>
-<b>19-July-2012</b>
+<?php echo release_date('19-July-2012'); ?>
<ul>
<li>Core
<ul>
@@ -2989,7 +2995,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.15"><!-- {{{ 5.3.15 -->
<h3>Version 5.3.15</h3>
-<b>19-July-2012</b>
+<?php echo release_date('19-July-2012'); ?>
<ul>
<li>Zend Engine
<ul>
@@ -3099,7 +3105,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.4"><!-- {{{ 5.4.4 -->
<h3>Version 5.4.4</h3>
-<b>06-June-2012</b>
+<?php echo release_date('06-June-2012'); ?>
<ul>
<li>CLI SAPI
<ul>
@@ -3225,7 +3231,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.14"><!-- {{{ 5.3.14 -->
<h3>Version 5.3.14</h3>
-<b>06-June-2012</b>
+<?php echo release_date('06-June-2012'); ?>
<ul>
<li>CLI SAPI
<ul>
@@ -3314,7 +3320,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.3"><!-- {{{ 5.4.3 -->
<h3>Version 5.4.3</h3>
-<b>08-May-2012</b>
+<?php release_date('08-May-2012'); ?>
<ul>
<li><?php bugfix(61807); ?> Buffer Overflow in apache_request_headers,
CVE-2012-2329.</li>
@@ -3324,7 +3330,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.13"><!-- {{{ 5.3.13 -->
<h3>Version 5.3.13</h3>
-<b>08-May-2012</b>
+<?php release_date('08-May-2012'); ?>
<ul>
<li><?php bugfix(61910); ?> Improve fix for PHP-CGI query string parameter
vulnerability, CVE-2012-2311.</li>
@@ -3333,7 +3339,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.2"><!-- {{{ 5.4.2 -->
<h3>Version 5.4.2</h3>
-<b>03-May-2012</b>
+<?php release_date('03-May-2012'); ?>
<ul>
<li><?php bugfix(61910); ?> Fix PHP-CGI query string parameter
vulnerability, CVE-2012-1823.</li>
@@ -3342,7 +3348,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.12"><!-- {{{ 5.3.12 -->
<h3>Version 5.3.12</h3>
-<b>03-May-2012</b>
+<?php release_date('03-May-2012'); ?>
<ul>
<li><?php bugfix(61910); ?> Fix PHP-CGI query string parameter
vulnerability, CVE-2012-1823.</li>
@@ -3351,7 +3357,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.1"><!-- {{{ 5.4.1 -->
<h3>Version 5.4.1</h3>
-<b>26-Apr-2012</b>
+<?php release_date('26-Apr-2012'); ?>
<ul>
<li>CLI Server
@@ -3424,7 +3430,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.11"><!-- {{{ 5.3.11 -->
<h3>Version 5.3.11</h3>
-<b>26-Apr-2012</b>
+<?php release_date('26-Apr-2012'); ?>
<ul>
<li>Core
@@ -3664,7 +3670,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.4.0"><!-- {{{ 5.4.0 -->
<h3>Version 5.4.0</h3>
-<b>01-Mar-2012</b>
+<?php release_date('01-Mar-2012'); ?>
<ul>
<li>autoconf 2.59+ is now supported (and required) for generating the
@@ -4304,7 +4310,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.10"><!-- {{{ 5.3.10 -->
<h3>Version 5.3.10</h3>
-<b>02-Feb-2012</b>
+<?php release_date('02-Feb-2012'); ?>
<ul>
<li>Core:
@@ -4319,7 +4325,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.9"><!-- {{{ 5.3.9 -->
<h3>Version 5.3.9</h3>
-<b>10-Jan-2012</b>
+<?php release_date('10-Jan-2012'); ?>
<ul>
<li>Core:
@@ -4651,7 +4657,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.8"><!-- {{{ 5.3.8 -->
<h3>Version 5.3.8</h3>
-<b>23-Aug-2011</b>
+<?php release_date('23-Aug-2011'); ?>
<ul>
<li>Core:
@@ -4673,7 +4679,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.7"><!-- {{{ 5.3.7 -->
<h3>Version 5.3.7</h3>
-<b>18-Aug-2011</b>
+<?php release_date('18-Aug-2011'); ?>
<ul>
<li>Upgraded bundled SQLite to version 3.7.7.1. (Scott)</li>
@@ -4993,7 +4999,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.6"><!-- {{{ 5.3.6 -->
<h3>Version 5.3.6</h3>
-<b>17-Mar-2011</b>
+<?php release_date('17-Mar-2011'); ?>
<ul>
<li>Upgraded bundled Sqlite3 to version 3.7.4. (Ilia)</li>
@@ -5248,7 +5254,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.5"><!-- {{{ 5.3.5 -->
<h3>Version 5.3.5</h3>
-<b>06-Jan-2011</b>
+<?php release_date('06-Jan-2011'); ?>
<ul>
<li><?php bugfix(53632); ?> (PHP hangs on numeric value
2.2250738585072011e-308). (CVE-2010-4645) (Rasmus, Scott)</li>
@@ -5259,7 +5265,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.17"><!-- {{{ 5.2.17 -->
<h3>Version 5.2.17</h3>
-<b>06-Jan-2011</b>
+<?php release_date('06-Jan-2011'); ?>
<ul>
<li><?php bugfix(53632); ?> (PHP hangs on numeric value
2.2250738585072011e-308). (CVE-2010-4645) (Rasmus, Scott)</li>
@@ -5270,7 +5276,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.16"><!-- {{{ 5.2.16 -->
<h3>Version 5.2.16</h3>
-<b>16-Dec-2010</b>
+<?php release_date('16-Dec-2010'); ?>
<ul>
<li><?php bugfix(53517); ?> (segfault in pgsql_stmt_execute() when postgres is
down). (gyp at balabit dot hu)</li>
@@ -5282,7 +5288,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.4"><!-- {{{ 5.3.4 -->
<h3>Version 5.3.4</h3>
-<b>09-Dec-2010</b>
+<?php release_date('09-Dec-2010'); ?>
<ul>
<li>Upgraded bundled Sqlite3 to version 3.7.3. (Ilia)</li>
@@ -5729,7 +5735,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.15"><!-- {{{ 5.2.15 -->
<h3>Version 5.2.15</h3>
-<b>08-Dec-2010</b>
+<?php release_date('08-Dec-2010'); ?>
<ul>
<li>Fixed extract() to do not overwrite $GLOBALS and $this when using
EXTR_OVERWRITE. (jorto at redhat dot com)</li>
@@ -5757,7 +5763,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.3"><!-- {{{ 5.3.3 -->
<h3>Version 5.3.3</h3>
-<b>22-Jul-2010</b>
+<?php release_date('22-Jul-2010'); ?>
<ul>
<li>Upgraded bundled sqlite to version 3.6.23.1. (Ilia)</li>
<li>Upgraded bundled PCRE to version 8.02. (Ilia)</li>
@@ -5940,7 +5946,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.14"><!-- {{{ 5.2.14 -->
<h3>Version 5.2.14</h3>
-<b>22-Jul-2010</b>
+<?php release_date('22-Jul-2010'); ?>
<ul>
<li>Reverted bug fix #49521 (PDO fetchObject sets values before calling
constructor). (Felipe)</li>
</ul>
@@ -6027,7 +6033,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.2"><!-- {{{ 5.3.2 -->
<h3>Version 5.3.2</h3>
-<b>04-Mar-2010</b>
+<?php release_date('04-Mar-2010'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -6190,7 +6196,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.13"><!-- {{{ 5.2.13 -->
<h3>Version 5.2.13</h3>
-<b>25-Feb-2010</b>
+<?php release_date('25-Feb-2010'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -6254,7 +6260,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.1"><!-- {{{ 5.3.1 -->
<h3>Version 5.3.1</h3>
-<b>19-Nov-2009</b>
+<?php release_date('19-Nov-2009'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -6417,7 +6423,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.3.0"><!-- {{{ 5.3.0 -->
<h3>Version 5.3.0</h3>
-<b>30-Jun-2009</b>
+<?php release_date('30-Jun-2009'); ?>
<ul>
<li>Upgraded bundled PCRE to version 7.9. (Nuno)</li>
@@ -7131,7 +7137,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.12"><!-- {{{ 5.2.12 -->
<h3>Version 5.2.12</h3>
-<b>17-Dec-2009</b>
+<?php release_date('17-Dec-2009'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -7214,7 +7220,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.11"><!-- {{{ 5.2.11 -->
<h3>Version 5.2.11</h3>
-<b>16-Sep-2009</b>
+<?php release_date('16-Sep-2009'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -7304,7 +7310,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.10"><!-- {{{ 5.2.10 -->
<h3>Version 5.2.10</h3>
-<b>18-Jun-2009</b>
+<?php release_date('18-Jun-2009'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -7425,7 +7431,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.9"><!-- {{{ 5.2.9 -->
<h3>Version 5.2.9</h3>
-<b>26-Feb-2009</b>
+<?php release_date('26-Feb-2009'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -7497,7 +7503,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.8"><!-- {{{ 5.2.8 -->
<h3>Version 5.2.8</h3>
-<b>08-Dec-2008</b>
+<?php release_date('08-Dec-2008'); ?>
<ul>
<li>Reverted bug fix <?php bugfix(42718); ?> that broke
magic_quotes_gpc (Scott)</li>
</ul>
@@ -7506,7 +7512,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.7"><!-- {{{ 5.2.7 -->
<h3>Version 5.2.7</h3>
-<b>04-Dec-2008</b>
+<?php release_date('04-Dec-2008'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -7701,7 +7707,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.6"><!-- {{{ 5.2.6 -->
<h3>Version 5.2.6</h3>
-<b>01-May-2008</b>
+<?php release_date('01-May-2008'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -7850,7 +7856,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.5"><!-- {{{ 5.2.5 -->
<h3>Version 5.2.5</h3>
-<b>08-Nov-2007</b>
+<?php release_date('08-Nov-2007'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -7935,7 +7941,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.4"><!-- {{{ 5.2.4 -->
<h3>Version 5.2.4</h3>
-<b>30-Aug-2007</b>
+<?php release_date('30-Aug-2007'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -8107,7 +8113,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.3"><!-- {{{ 5.2.3 -->
<h3>Version 5.2.3</h3>
-<b>31-May-2007</b>
+<?php release_date('31-May-2007'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -8183,7 +8189,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.2"><!-- {{{ 5.2.2 -->
<h3>Version 5.2.2</h3>
-<b>03-May-2007</b>
+<?php release_date('03-May-2007'); ?>
<ul>
<li>Security Fixes
<ul>
@@ -8380,7 +8386,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.1"><!-- {{{ 5.2.1 -->
<h3>Version 5.2.1</h3>
-<b>08-Feb-2007</b>
+<?php release_date('08-Feb-2007'); ?>
<ul>
<li>Added CURLOPT_TCP_NODELAY constant to Curl extension. (Sara)</li>
<li>Added support for hex numbers of any size. (Matt)</li>
@@ -8653,7 +8659,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.2.0"><!-- {{{ 5.2.0 -->
<h3>Version 5.2.0</h3>
-<b>02-Nov-2006</b>
+<?php release_date('02-Nov-2006'); ?>
<ul>
<li>Updated bundled OpenSSL to version 0.9.8d in the Windows distro.
(Edin)</li>
<li>Updated Postgresql client libraries to 8.1.4 in the Windows distro.
(Edin)</li>
@@ -9029,7 +9035,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.1.6"><!-- {{{ 5.1.6 -->
<h3>Version 5.1.6</h3>
-<b>24-Aug-2006</b>
+<?php release_date('24-Aug-2006'); ?>
<ul>
<li>Fixed memory_limit on 64bit systems. (Stefan E.)</li>
<li><?php bugfix(38488); ?> (Access to "php://stdin" and family crashes
PHP on win32). (Dmitry)</li>
@@ -9039,7 +9045,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.1.5"><!-- {{{ 5.1.5 -->
<h3>Version 5.1.5</h3>
-<b>17-Aug-2006</b>
+<?php release_date('17-Aug-2006'); ?>
<ul>
<li>Fixed overflow on 64bit systems in str_repeat() and wordwrap().
(Stefan E.) </li>
<li>Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or
safe_mode are enabled. (Stefan E., Ilia)</li>
@@ -9066,7 +9072,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.1.4"><!-- {{{ 5.1.4 -->
<h3>Version 5.1.4</h3>
-<b>04-May-2006</b>
+<?php release_date('04-May-2006'); ?>
<ul>
<li>Added "capture_peer_cert" and "capture_peer_cert_chain" context
options for SSL streams. (Wez).</li>
<li>Added PDO::PARAM_EVT_* family of constants. (Sara)</li>
@@ -9082,7 +9088,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.1.3"><!-- {{{ 5.1.3 -->
<h3>Version 5.1.3</h3>
-<b>02-May-2006</b>
+<?php release_date('02-May-2006'); ?>
<ul>
<li>Updated bundled PCRE library to version 6.6. (Andrei)</li>
<li>Moved extensions to PECL:
@@ -9278,7 +9284,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.1.2"><!-- {{{ 5.1.2 -->
<h3>Version 5.1.2</h3>
-<b>12-Jan-2006</b>
+<?php release_date('12-Jan-2006'); ?>
<ul>
<li>Updated libsqlite in ext/sqlite to 2.8.17. (Ilia)</li>
<li>Updated libsqlite in ext/pdo_sqlite to 3.2.8. (Ilia)</li>
@@ -9403,7 +9409,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.1.1"><!-- {{{ 5.1.1 -->
<h3>Version 5.1.1</h3>
-<b>28-Nov-2005</b>
+<?php release_date('28-Nov-2005'); ?>
<ul>
<li>Disabled native date class to prevent pear::date conflict. (Ilia)</li>
<li>Improved safe_mode/open_basedir checks in cURL extension. (Ilia, Jani)</li>
@@ -9426,7 +9432,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.1.0"><!-- {{{ 5.1.0 -->
<h3>Version 5.1.0</h3>
-<b>24-Nov-2005</b>
+<?php release_date('24-Nov-2005'); ?>
<ul>
<li>Added support for class constants and static members for internal classes.
(Dmitry, Michael Wallner)</li>
<li>Added "new_link" parameter to mssql_connect() (Bug <?php bugl(34369); ?>).
(Frank)</li>
@@ -9969,7 +9975,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.5"><!-- {{{ 5.0.5 -->
<h3>Version 5.0.5</h3>
-<b>05-Sep-2005</b>
+<?php release_date('05-Sep-2005'); ?>
<ul>
<li>Upgraded PCRE library to version 5.0. (Andrei)</li>
<li>Removed php_check_syntax() function which never worked properly.
(Ilia)</li>
@@ -10207,7 +10213,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.4"><!-- {{{ 5.0.4 -->
<h3>Version 5.0.4</h3>
-<b>31-Mar-2005</b>
+<?php release_date('31-Mar-2005'); ?>
<ul>
<li>Added SNMPv2 support. (harrie)</li>
<li>Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony)</li>
@@ -10396,7 +10402,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.3"><!-- {{{ 5.0.3 -->
<h3>Version 5.0.3</h3>
-<b>15-Dec-2004</b>
+<?php release_date('15-Dec-2004'); ?>
<ul>
<li>Added the %F modifier to *printf to render a non-locale-aware
representation of a float with the . as decimal seperator. (Derick)</li>
<li>Fixed error handling in mysqli_multi_query. (Georg)</li>
@@ -10470,7 +10476,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.2"><!-- {{{ 5.0.2 -->
<h3>Version 5.0.2</h3>
-<b>23-Sep-2004</b>
+<?php release_date('23-Sep-2004'); ?>
<ul>
<li> Added new boolean (fourth) parameter to array_slice() that turns on the
preservation of keys in the returned array. (Derick) </li>
<li> Added the sorting flag SORT_LOCALE_STRING to the sort() functions which
makes them sort based on the current locale. (Derick) </li>
@@ -10514,7 +10520,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.1"><!-- {{{ 5.0.1 -->
<h3>Version 5.0.1</h3>
-<b>12-Aug-2004</b>
+<?php release_date('12-Aug-2004'); ?>
<ul>
<li> Changed destructor mechanism so that destructors are called prior to
request shutdown. (Marcus) </li>
<li> Rewritten UNIX and Windows install help files. (Documentation Team) </li>
@@ -10563,7 +10569,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.0"><!-- {{{ 5.0.0 -->
<h3>Version 5.0.0</h3>
-<b>13-Jul-2004</b>
+<?php release_date('13-Jul-2004'); ?>
<ul>
<li>Updated PCRE to provide better error handling in certain cases.
(Andrei)</li>
<li>Changed doc comments to require a single white space after '/**'.
(Marcus)</li>
@@ -10592,7 +10598,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.0RC3"><!-- {{{ 5.0.0RC3 -->
<h3>Version 5.0.0 Release Candidate 3</h3>
-<b>8-Jun-2004</b>
+<?php release_date('8-Jun-2004'); ?>
<ul>
<li>Moved the PDFLib extension to PECL. (Wez)</li>
<li>Added MySQL 4.1.2-alpha and 4.1.3-beta support to MySQLI extension.
(Georg)</li>
@@ -10628,7 +10634,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.0RC2"><!-- {{{ 5.0.0RC2 -->
<h3>Version 5.0.0 Release Candidate 2</h3>
-<b>25-Apr-2004</b>
+<?php release_date('25-Apr-2004'); ?>
<ul>
<li> Implementing an interface/abstract method with the wrong prototype is now
a fatal error. (Zeev)
@@ -10720,7 +10726,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.0RC1"><!-- {{{ 5.0.0RC1 -->
<h3>Version 5.0.0 Release Candidate 1</h3>
-<b>18-Mar-2004</b>
+<?php release_date('18-Mar-2004'); ?>
<ul>
<li>Fixed numerous bugs with the just-in-time auto-global initialization, that
could cause $_SERVER, $argv/$argc and other variables not to work properly.
@@ -10862,7 +10868,7 @@ function peclbugl($number) { echo "<a
href=\"http://pecl.php.net/bugs/bug.php?
<section class="version" id="5.0.0b4"><!-- {{{ 5.0.0b4 -->
<h3>Version 5.0.0 Beta 4</h3>
-<b>12-Feb-2004</b>
+<?php release_date('12-Feb-2004'); ?>
<ul>
<li>Changed exceptions so that they must now inherit from the built-in
Exception
class. This allows for a general catch(Exception $e) statement to catch all
@@ -10965,7 +10971,7 @@ exception). (Marcus)</li>
<section class="version" id="5.0.0b3"><!-- {{{ 5.0.0b3 -->
<h3>Version 5.0.0 Beta 3</h3>
-<b>21-Dec-2003</b>
+<?php release_date('21-Dec-2003'); ?>
<ul>
<li>Bundled new tidy extension (John, Wez)</li>
<li>Upgraded PCRE library to version 4.5. (Andrei)</li>
@@ -11048,7 +11054,7 @@ segfault). (Moriyoshi)</li>
<section class="version" id="5.0.0b2"><!-- {{{ 5.0.0b2 -->
<h3>Version 5.0.0 Beta 2</h3>
-<b>30-Oct-2003</b>
+<?php release_date('30-Oct-2003'); ?>
<ul>
<li>Lots and lots of changes in the Zend Engine 2 since beta 1:
<ul>
@@ -11145,7 +11151,7 @@ fault?]). (Sterling, Marcus)</li>
<section class="version" id="5.0.0b1"><!-- {{{ 5.0.0b1 -->
<h3>Version 5.0.0 Beta 1</h3>
-<b>29-Jun-2003</b>
+<?php release_date('29-Jun-2003'); ?>
<ul>
<li>Switch to using Zend Engine 2, which includes numerous engine level
improvements.
A full overview may be downloaded from <a
href="http://www.zend.com/engine2/ZendEngine-2.0.pdf">http://www.zend.com/engine2/ZendEngine-2.0.pdf</a>
(PDF).
diff --git a/styles/changelog.css b/styles/changelog.css
index 1abef47..2f26bf7 100644
--- a/styles/changelog.css
+++ b/styles/changelog.css
@@ -1,22 +1,22 @@
/* Changelog pages. */
section.version {
- border-top: solid 0.1875em #99C;
- margin: .75em 0;
- padding: .75em 0;
+ border-top: solid 0.125rem #99C;
+ margin: .75rem 0;
+ padding: .75rem 0;
}
section.version > :last-child {
margin-bottom:0;
}
-section.version b {
- /* Not entirely clear how <b> became the enclosing element for dates, but
- * whatever. We'll use the same styling as dates in the news archive,
- * except without the dotted border (since they're not actual <abbr>
- * elements). */
+/* In older changelogs than 5, the b element was used for time */
+section.version > b,
+section.version time.releasedate {
color: #666;
- display: inline-block;
- font-size: 0.75em;
- font-weight: normal;
- line-height: 2;
+ display: block;
+ font-size: 0.875rem;
+}
+
+section.version ul ul {
+ margin-top:0;
}--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php