danbeck         Wed Jun 27 08:11:31 2001 EDT

  Modified files:              
    /phpdoc/en/language oop.xml 
  Log:
  adding extra example for issue in bug #10022
  
Index: phpdoc/en/language/oop.xml
diff -u phpdoc/en/language/oop.xml:1.14 phpdoc/en/language/oop.xml:1.15
--- phpdoc/en/language/oop.xml:1.14     Fri May 18 14:44:37 2001
+++ phpdoc/en/language/oop.xml  Wed Jun 27 08:11:31 2001
@@ -82,6 +82,7 @@
     var $todays_date = date("Y-m-d");
     var $name = $firstname;
     var $owner = 'Fred ' . 'Jones';
+    var $items = array("VCR", "TV");
 }
 
 /* This is how it should be done. */
@@ -89,6 +90,7 @@
     var $todays_date;
     var $name;
     var $owner;
+    var $items;
 
     function Cart() {
         $this->todays_date = date("Y-m-d");


Reply via email to