diff --git a/appendices/migration51.xml b/appendices/migration51.xml index e58df738b5..6ea71cdc3b 100644 --- a/appendices/migration51.xml +++ b/appendices/migration51.xml @@ -1,5 +1,5 @@ - + Migrating from PHP 5.0.x to PHP 5.1.x @@ -244,7 +244,7 @@ var_dump($bar); - In PHP 5.0.3, $bar evaluated to NULL + In PHP 5.0.3, $bar evaluated to NULL instead of returning an object. That happened because getThis() returns by value, but the value here is assigned by reference. Although it now works in the expected way, this is