
10-09-2006, 02:02 PM
|
|
|
Join Date: Nov 2005
Location: UK
Posts: 153
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by ZAG
To fix the Export Problem in Version 3.6.x
Search "admin_quiz.php" for
PHP Code:
nRow.innerHTML = '<form action=\"admin_quiz.php\" name=\"cpform\" method=\"post\"><input type=\"hidden\" name=\"do\" value=\"do_download_export\" /><div style=\"display:none\"><textarea name=\"export_output\">'+Value+'</textarea></div><div align=\"center\"><input type=\"submit\" value=\"Download Export\" class=\"button\"></div></form>'
and replace with
PHP Code:
nRow.innerHTML = '<form action=\"admin_quiz.php\" name=\"cpform\" method=\"post\"><input type=\"hidden\" name=\"adminhash\" value=\"".ADMINHASH."\" /><input type=\"hidden\" name=\"do\" value=\"do_download_export\" /><div style=\"display:none\"><textarea name=\"export_output\">'+Value+'</textarea></div><div align=\"center\"><input type=\"submit\" value=\"Download Export\" class=\"button\"></div></form>'
You will find it at line 2314 of the original file.
|
This didn't work for me!
|