derick          Thu Nov 22 08:51:34 2001 EDT

  Modified files:              
    /phpdoc/en/functions        array.xml 
  Log:
  - Fix for bug 14176
  
  
Index: phpdoc/en/functions/array.xml
diff -u phpdoc/en/functions/array.xml:1.127 phpdoc/en/functions/array.xml:1.128
--- phpdoc/en/functions/array.xml:1.127 Tue Nov 20 02:27:26 2001
+++ phpdoc/en/functions/array.xml       Thu Nov 22 08:51:33 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.127 $ -->
+<!-- $Revision: 1.128 $ -->
  <reference id="ref.array">
   <title>Array Functions</title>
   <titleabbrev>Arrays</titleabbrev>
@@ -940,7 +940,7 @@
 <![CDATA[
 $array1 = array ("color" => "red", 2, 4);
 $array2 = array ("a", "b", "color" => "green", "shape" => "trapezoid", 4);
-array_merge ($array1, $array2);
+$result = array_merge ($array1, $array2);
 ]]>
       </programlisting>
      </example>


Reply via email to