clarify handled content types
authorMichael Wallner <mike@php.net>
Wed, 18 Mar 2015 07:03:26 +0000 (08:03 +0100)
committerMichael Wallner <mike@php.net>
Wed, 18 Mar 2015 07:03:26 +0000 (08:03 +0100)
json_post.md

index 548cefd47ea3e3f2d0966e5aadc0c25a109ed1cf..e220dfd82373f2b786a616ad640d298a1720606d 100644 (file)
@@ -10,7 +10,7 @@ Parse JSON request bodies into `$_POST`.
 
 This tiny extension provides a PHP content type handler for `text/json` to PHP's form data parser. 
 
-If the `Content-Type` of an incoming request is `text/json`, the JSON contents of the request body will by parsed into `$_POST`.
+If the `Content-Type` of an incoming request is `application/json` or `text/json`, the JSON contents of the request body will by parsed into `$_POST`.
 
 ## Installation: