vlad            Sun Dec 30 06:51:06 2001 EDT

  Modified files:              
    /phpdoc/en/functions        dbase.xml 
  Log:
  Documented fix to bug #5993 (that large integers that would have caused
  an integer overflow (> 32 bits) will now be returned as strings instead.
  #Hope I have inserted the bulleted list properly - can't validate xml :(
  
  
Index: phpdoc/en/functions/dbase.xml
diff -u phpdoc/en/functions/dbase.xml:1.14 phpdoc/en/functions/dbase.xml:1.15
--- phpdoc/en/functions/dbase.xml:1.14  Wed Dec 12 15:46:42 2001
+++ phpdoc/en/functions/dbase.xml       Sun Dec 30 06:51:05 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
  <reference id="ref.dbase">
   <title>dBase functions</title>
   <titleabbrev>dBase</titleabbrev>
@@ -294,8 +294,20 @@
      <function>dbase_delete_record</function>.
     </para>
     <para>
-     Each field is converted to the appropriate PHP type. (Dates are
-     left as strings.)
+     Each field is converted to the appropriate PHP type, except:
+     <itemizedlist>
+      <listitem>
+       <simpara>
+        Dates are left as strings
+       </simpara>
+      </listitem>
+      <listitem>
+       <simpara>
+        Integers that would have caused an overflow (> 32 bits)
+        are returned as strings
+       </simpara>
+      </listitem>
+     </itemizedlist>
     </para>
    </refsect1>
   </refentry>
@@ -325,8 +337,20 @@
      for deletion (see <function>dbase_delete_record</function>).
     </para>
     <para>
-     Each field is converted to the appropriate PHP type. (Dates are
-     left as strings.)
+     Each field is converted to the appropriate PHP type, except:
+     <itemizedlist>
+      <listitem>
+       <simpara>
+        Dates are left as strings
+       </simpara>
+      </listitem>
+      <listitem>
+       <simpara>
+        Integers that would have caused an overflow (> 32 bits)
+        are returned as strings
+       </simpara>
+      </listitem>
+     </itemizedlist>
     </para>
    </refsect1>
   </refentry>


Reply via email to