From f922818dad766606d5c0934b0097ba9444c2c93d Mon Sep 17 00:00:00 2001 From: Scott MacVicar Date: Tue, 9 Aug 2011 15:27:25 +0000 Subject: [PATCH] Fix typos in UPGRADING --- UPGRADING | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UPGRADING b/UPGRADING index 189bf01f7fd..056f2a3fb81 100755 --- a/UPGRADING +++ b/UPGRADING @@ -100,7 +100,7 @@ UPGRADE NOTES - PHP X.Y To create a generic object you can use StdClass: $test = new StdClass; - $text->baz = 1; + $test->baz = 1; - It's now possible to enforce the class' __construct arguments in an abstract constructor in the base class. @@ -344,7 +344,7 @@ UPGRADE NOTES - PHP X.Y multibyte support, but may enable or disable it by zend.multibyte. It doesn't make a lot of sense to enable this option without ext/mbstring, because the most functionality is implemented by mbstrings callbacks. -- Added enable_post_data_reading, which is enable by default. When it's +- Added enable_post_data_reading, which is enabled by default. When it's disabled, the POST data is not read (and processed); the behavior is similar to that of other request methods with body, like PUT. This allows reading the raw POST data in multipart requests and read/process the POST data in a