summaryrefslogtreecommitdiff
path: root/Zend/ZEND_CHANGES
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-11-05 19:55:00 +0000
committerAndi Gutmans <andi@php.net>2002-11-05 19:55:00 +0000
commit867519c42024e08ff578d029291d25533cb37a70 (patch)
tree6e6342ebae854042e118b8502536630eebed3d96 /Zend/ZEND_CHANGES
parentb3ab4ece8d67418fa2667167cf8992feb7f0623a (diff)
downloadphp-git-867519c42024e08ff578d029291d25533cb37a70.tar.gz
- A couple of updates
Diffstat (limited to 'Zend/ZEND_CHANGES')
-rw-r--r--Zend/ZEND_CHANGES4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/ZEND_CHANGES b/Zend/ZEND_CHANGES
index 6e999ef259..71e773b7bb 100644
--- a/Zend/ZEND_CHANGES
+++ b/Zend/ZEND_CHANGES
@@ -120,7 +120,7 @@ Changes in the Zend Engine 2.0
}
function __clone() {
- $this->name = $clone->name;
+ $this->name = $that->name;
$this->address = 'New York';
$this->id = self::$id++;
}
@@ -489,6 +489,8 @@ Changes in the Zend Engine 2.0
print foo::$my_static;
?>
+ * Static methods (TBD)
+
* Parameters that are passed by reference to a function
may now have default values.