- Fix overrun in strip_tags (Stas, Zend library)
- Fixed crash in strip_tags() and related functions. (Thies)
- Workaround for bogus POST-Data from IE/Mac. (Thies)
-- Patch by Alain Malek <alain@virtua.ch>
+ Patch by Alain Malek <alain@virtua.ch>
- Finished the server abstraction layer; All of the PHP code is now shared
across different servers (Apache, CGI, IIS, etc.), except for thin
interface modules (Zeev)
WRONG_PARAM_COUNT; \
} \
convert_to_string_ex(filename); \
- php_stat((*filename)->value.str.val, funcnum, return_value); \
+ if ((*filename)->value.str.len) \
+ php_stat((*filename)->value.str.val, funcnum, return_value); \
}
FileFunction(PHP_FN(fileperms),0)