|
Very strange indeed since we stripslashe the deftitle and defdesc variables tha are passed in the url
How about's in bulkupload.php twice find this
$title = $deftitle;
$desc = $defdesc;
replace with this
$title = stripslashes($deftitle);
$desc = stripslashes($defdesc);
|