alindeman               Mon Apr 22 18:26:14 2002 EDT

  Modified files:              
    /phpdoc/en/language variables.xml 
  Log:
  fixes bug #16738
  
  
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.44 phpdoc/en/language/variables.xml:1.45
--- phpdoc/en/language/variables.xml:1.44       Mon Apr 22 12:52:22 2002
+++ phpdoc/en/language/variables.xml    Mon Apr 22 18:26:10 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.44 $ -->
+<!-- $Revision: 1.45 $ -->
  <chapter id="language.variables">
   <title>Variables</title>
   
@@ -75,8 +75,8 @@
 $foo = 'Bob';              // Assign the value 'Bob' to $foo
 $bar = &$foo;              // Reference $foo via $bar.
 $bar = "My name is $bar";  // Alter $bar...
-echo $foo;                 // $foo is altered too.
 echo $bar;
+echo $foo;                 // $foo is altered too.
 ?>
 ]]>
      </programlisting>


Reply via email to