Skip to content

Commit

Permalink
Fix typos in UPGRADING
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott MacVicar committed Aug 9, 2011
1 parent 219a3b9 commit f922818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UPGRADING
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f922818

Please sign in to comment.