Skip to content

Commit

Permalink
Fixed bug: method='post' added to form element in copy question secti…
Browse files Browse the repository at this point in the history
…on (was causing the copy method to fail because database.php was expecting $_POST variables, but only getting $_GET variables.)

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@215 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Apr 12, 2003
1 parent f0c54d9 commit 938b840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/html.php
Expand Up @@ -447,7 +447,7 @@
$editquestion .= "\t\t\t<b>$setfont<font color='white'>Copy Question $qid (Code {$eqrow['title']})</b><br />Note: You MUST enter a new Question Code!</font></font>\n";
$editquestion .= "\t\t</td>\n";
$editquestion .= "\t</tr>\n";
$editquestion .= "\t<tr><form action='$scriptname' name='editquestion' >\n";
$editquestion .= "\t<tr><form action='$scriptname' name='editquestion' method='post'>\n";
$editquestion .= "\t\t<td align='right'>$setfont<b>Question Code:</b></font></td>\n";
$editquestion .= "\t\t<td><input type='text' size='20' name='title' value='' /></td>\n";
$editquestion .= "\t</tr>\n";
Expand Down

0 comments on commit 938b840

Please sign in to comment.