bjori           Thu May 24 08:01:35 2007 UTC

  Modified files:              
    /phpdoc/en/appendices       migration52.xml 
  Log:
  Copy&paste the ini descriptions
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/appendices/migration52.xml?r1=1.21&r2=1.22&diff_format=u
Index: phpdoc/en/appendices/migration52.xml
diff -u phpdoc/en/appendices/migration52.xml:1.21 
phpdoc/en/appendices/migration52.xml:1.22
--- phpdoc/en/appendices/migration52.xml:1.21   Thu May 24 07:53:45 2007
+++ phpdoc/en/appendices/migration52.xml        Thu May 24 08:01:35 2007
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.21 $ -->
+<!-- $Revision: 1.22 $ -->
 <appendix id="migration52">
  <title>Migrating from PHP 5.1.x to PHP 5.2.x</title>
 
@@ -1847,16 +1847,31 @@
     <simpara>
      <link linkend="ini.pcre.backtrack-limit">pcre.backtrack_limit</link>
     </simpara>
+    <simpara>
+     PCRE's backtracking limit.
+    </simpara>
    </listitem>
    <listitem>
     <simpara>
      <link linkend="ini.pcre.recursion-limit">pcre.recursion_limit</link>
     </simpara>
+    <simpara>
+     PCRE's recursion limit. Please note that if you set this value to a high
+     number you may consume all the available process stack and eventually
+     crash PHP (due to reaching the stack size limit imposed by the Operating
+     System).
+    </simpara>
    </listitem>
    <listitem>
     <simpara>
      <link linkend="ini.session.cookie-httponly">session.cookie_httponly</link>
     </simpara>
+    <simpara>
+     Marks the cookie as accessible only through the HTTP protocol. This means
+     that the cookie won't be accessible by scripting languages, such as
+     JavaScript. This setting can effectively help to reduce identity theft
+     through XSS attacks (although it is not supported by all browsers).
+    </simpara>
    </listitem>
   </itemizedlist>
   <para>

Reply via email to