Commit: 51b472cf0f85942d8df8d98d6891ea965d65bcfb Author: kovacs.ferenc <[email protected]> Fri, 29 Aug 2014 13:28:04 +0200 Parents: 7f0b4a3c8632de8e3cf2ab8522a1a125080b5b21 Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=51b472cf0f85942d8df8d98d6891ea965d65bcfb Log: fix bug #67931 Bugs: https://bugs.php.net/67931 Changed paths: M archive/entries/2014-08-28-1.xml M releases/5_6_0.php Diff: diff --git a/archive/entries/2014-08-28-1.xml b/archive/entries/2014-08-28-1.xml index d2388db..3cd0ad5 100644 --- a/archive/entries/2014-08-28-1.xml +++ b/archive/entries/2014-08-28-1.xml @@ -17,11 +17,11 @@ This new version comes with new features, some backward incompatible changes and <p><b>The main features of PHP 5.6.0 include:</b></p> <ul> <li><a href="http://php.net/migration56.new-features#migration56.new-features.const-scalar-exprs">Constant scalar expressions</a>.</li> - <li><a href="http://php.net/functions.arguments.php#functions.variable-arg-list">Variadic functions</a> and argument unpacking using the <code>...</code> operator.</li> + <li><a href="http://php.net/functions.arguments#functions.variable-arg-list">Variadic functions</a> and argument unpacking using the <code>...</code> operator.</li> <li><a href="http://php.net/language.operators.arithmetic">Exponentiation using the <code>**</code> operator</a>.</li> - <li><a href="http://php.net/migration56.new-features#migration56.new-features.use">Function and constant importing</a> with the <a href="http://php.net/language.namespaces.importing.php">use keyword</a>.</li> + <li><a href="http://php.net/migration56.new-features#migration56.new-features.use">Function and constant importing</a> with the <a href="http://php.net/language.namespaces.importing">use keyword</a>.</li> <li><a href="http://phpdbg.com/docs">phpdbg</a> as an interactive integrated debugger SAPI.</li> - <li><a href="http://php.net/wrappers.php.php#wrappers.php.input">php://input</a> is now reusable, and <code>$HTTP_RAW_POST_DATA</code> is deprecated.</li> + <li><a href="http://php.net/wrappers#wrappers.php.input">php://input</a> is now reusable, and <code>$HTTP_RAW_POST_DATA</code> is deprecated.</li> <li><a href="http://php.net/book.gmp">GMP</a> objects now support operator overloading.</li> <li>File uploads larger than 2 gigabytes in size are now accepted.</li> </ul> diff --git a/releases/5_6_0.php b/releases/5_6_0.php index 325e4f2..35fa3fa 100644 --- a/releases/5_6_0.php +++ b/releases/5_6_0.php @@ -14,11 +14,11 @@ This new version comes with new features, some backward incompatible changes and <p><b>The main features of PHP 5.6.0 include:</b></p> <ul> <li><a href="http://php.net/migration56.new-features#migration56.new-features.const-scalar-exprs">Constant scalar expressions</a>.</li> - <li><a href="http://php.net/functions.arguments.php#functions.variable-arg-list">Variadic functions</a> and argument unpacking using the <code>...</code> operator.</li> + <li><a href="http://php.net/functions.arguments#functions.variable-arg-list">Variadic functions</a> and argument unpacking using the <code>...</code> operator.</li> <li><a href="http://php.net/language.operators.arithmetic">Exponentiation using the <code>**</code> operator</a>.</li> - <li><a href="http://php.net/migration56.new-features#migration56.new-features.use">Function and constant importing</a> with the <a href="http://php.net/language.namespaces.importing.php">use keyword</a>.</li> + <li><a href="http://php.net/migration56.new-features#migration56.new-features.use">Function and constant importing</a> with the <a href="http://php.net/language.namespaces.importing">use keyword</a>.</li> <li><a href="http://phpdbg.com/docs">phpdbg</a> as an interactive integrated debugger SAPI.</li> - <li><a href="http://php.net/wrappers.php.php#wrappers.php.input">php://input</a> is now reusable, and <code>$HTTP_RAW_POST_DATA</code> is deprecated.</li> + <li><a href="http://php.net/wrappers#wrappers.php.input">php://input</a> is now reusable, and <code>$HTTP_RAW_POST_DATA</code> is deprecated.</li> <li><a href="http://php.net/book.gmp">GMP</a> objects now support operator overloading.</li> <li>File uploads larger than 2 gigabytes in size are now accepted.</li> </ul> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
