goba            Sat Nov  9 09:06:34 2002 EDT

  Modified files:              
    /phpdoc/en/language types.xml 
  Log:
  Correcting entity error reported by xsltproc
  
  
Index: phpdoc/en/language/types.xml
diff -u phpdoc/en/language/types.xml:1.97 phpdoc/en/language/types.xml:1.98
--- phpdoc/en/language/types.xml:1.97   Sat Nov  9 08:50:36 2002
+++ phpdoc/en/language/types.xml        Sat Nov  9 09:06:33 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.97 $ -->
+<!-- $Revision: 1.98 $ -->
  <chapter id="language.types">
   <title>Types</title>
 
@@ -1683,6 +1683,7 @@
      an array by reference.
      <informalexample>
       <programlisting role="php">
+<![CDATA[
 $arr1 = array(2, 3);
 $arr2 = $arr1;
 $arr2[] = 4; // $arr2 is changed,
@@ -1690,6 +1691,7 @@
              
 $arr3 = &$arr1;
 $arr3[] = 4; // now $arr1 and $arr3 are the same
+]]>
       </programlisting>
      </informalexample>
     </para>



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to