- Fixed TSRM problem in latest commit.

This commit is contained in:
Derick Rethans 2004-05-21 08:16:13 +00:00
parent bc7ad69fbc
commit cb1e4ab6c8

View File

@ -1044,7 +1044,7 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler)
php_mb_gpc_encoding_converter(&filename, &str_len, 1, NULL, NULL TSRMLS_CC);
}
s = php_mb_strrchr(filename, '\\' TSRMLS_CC);
if (tmp = php_mb_strrchr(filename, '/')) {
if (tmp = php_mb_strrchr(filename, '/' TSRMLS_CC)) {
s = tmp;
}
num_vars--;