laruence Fri, 19 Aug 2011 08:35:43 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=315163
Log:
Fixed typo when syncing changes to branch
Changed paths:
U php/php-src/branches/PHP_5_4/sapi/cli/php_cli_server.c
Modified: php/php-src/branches/PHP_5_4/sapi/cli/php_cli_server.c
===================================================================
--- php/php-src/branches/PHP_5_4/sapi/cli/php_cli_server.c 2011-08-19
08:30:26 UTC (rev 315162)
+++ php/php-src/branches/PHP_5_4/sapi/cli/php_cli_server.c 2011-08-19
08:35:43 UTC (rev 315163)
@@ -1411,7 +1411,7 @@
request_info->post_data = client->request.content;
request_info->content_length = request_info->post_data_length =
client->request.content_len;
if (SUCCESS == zend_hash_find(&client->request.headers, "Content-Type",
sizeof("Content-Type"), (void**)&val)) {
- request_info->content_type = strtok(*val, delimiter);
+ request_info->content_type = *val;
}
} /* }}} */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php