Community Support for OpenDocMan (Deprecated)

Full Version: Call to undefined function sanitize_system_string() in /var/
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Got everything installed properly, but when I attempt to add a file and submit, I get the return of this error.

Fatal error: Call to undefined function sanitize_system_string() in /var/www/out.php on line 39

I'm not sure where to look, or what to do next. Any help appreciated.
Which version are you using? Check the version.php file.
having the exact same problem. little discouraging, thought i FINALLY had worked past all the errors... please help. thanks.

Fatal error: Call to undefined function sanitize_system_string() in /var/www/xxxxx/xxxxx/httpdocs/docserver/out.php on line 39


version 1.2.5.3
To fix that you can:

change line 39 in out.php:
$last_message = sanitize_system_string($_REQUEST['last_message']);
Change To:
$last_message = sanitizeme($_REQUEST['last_message']);

change line 45 in view_file.php:
draw_status_bar('File View',sanitize($_REQUEST['last_message']));
Change To:
draw_status_bar('File View',sanitizeme($_REQUEST['last_message']));

Thanks for the report. I will upload a new version with those fixex.
Thanks!

Problem solved.
:lol: