Skip to content

Commit

Permalink
Fixed bug - missing dollar sign on line 163 (copy question, copy answ…
Browse files Browse the repository at this point in the history
…ers)

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@31 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 16, 2003
1 parent 300f07c commit 971a35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
{
$q2 = "SELECT qid FROM questions ORDER BY qid DESC LIMIT 1";
$r2 = mysql_query($q2);
while ($qr2 = mysql_fetch_row($r2)) {$newqid = qr2['qid'];}
while ($qr2 = mysql_fetch_row($r2)) {$newqid = $qr2['qid'];}
$q1 = "SELECT * FROM answers WHERE qid='$oldqid' ORDER BY code";
$r1 = mysql_query($q1);
while ($qr1 = mysql_fetch_row($r1))
Expand Down

0 comments on commit 971a35c

Please sign in to comment.