Спасибо, все сам исправил :)
Решение:
В файле Downloads/admin/index.php в function DownloadsAddDownload надо код:
PHP код:
$title = stripslashes(FixQuotes($title));
$url = stripslashes(FixQuotes($url));
$description = stripslashes(FixQuotes($description));
заменить на:
PHP код:
$title = addslashes(FixQuotes($title));
$url = addslashes(FixQuotes($url));
$description = addslashes(FixQuotes($description));