Index: mysql-escape-string.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/mysql/functions/mysql-escape-string.xml,v
retrieving revision 1.15
diff -u -r1.15 mysql-escape-string.xml
--- mysql-escape-string.xml	20 Jun 2007 22:25:00 -0000	1.15
+++ mysql-escape-string.xml	2 Oct 2007 19:01:22 -0000
@@ -14,7 +14,10 @@
   </methodsynopsis>
   <para>
    This function will escape the <parameter>unescaped_string</parameter>,
-   so that it is safe to place it in a <function>mysql_query</function>.
+   by inserting a backslash before before characters that have a special
+   meaning to mysql so that it is safe to place it in a <function>mysql_query</function>.
+   These characters are single quote ('), double quote ("), backslash (\), newline(\n),
+   carriage return (\r), substitute (\Z) and NUL (the NULL byte).
    This function is deprecated.
   </para>
   <para>
@@ -49,31 +52,6 @@
   </para>
  </refsect1>
 
- <refsect1 role="changelog">
-  &reftitle.changelog;
-  <para>
-   <informaltable>
-    <tgroup cols="2">
-     <thead>
-      <row>
-       <entry>&Version;</entry>
-       <entry>&Description;</entry>
-      </row>
-     </thead>
-     <tbody>
-      <row>
-       <entry>4.3.0</entry>
-       <entry>
-        This function became deprecated, do not use this function. Instead, 
-        use <function>mysql_real_escape_string</function>.
-       </entry>
-      </row>
-     </tbody>
-    </tgroup>
-   </informaltable>
-  </para>
- </refsect1>
-
  <refsect1 role="examples">
   &reftitle.examples;
   <para>
@@ -102,9 +80,13 @@
   &reftitle.notes;
   <note>
    <para>
+     The function <function>mysql_escape_string</funciton has been depricated, use <function>mysql_real_escape_string</function> instead.
+   </para>
+   <para>
     <function>mysql_escape_string</function> does not escape
     <literal>%</literal> and <literal>_</literal>.
    </para>
+
   </note>
  </refsect1>
 
