Change chars

See all posts See thread Reply

Re: Change chars new!
by colin, 13 years, 5 months ago
The filenames are sanitized for security purposes. You can set file_safe_name to false to prevent this behaviour.
$handle->file_safe_name = false;

If the file is considered dangerous, then the class will add a .txt extension. You can deactivate this behaviour by setting no_script to false:
$handle->no_script = false;
Reply