From: Chris S. <san...@us...> - 2005-08-19 19:49:39
|
Update of /cvsroot/stack/stack-1-0/frontend_general In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20263/frontend_general Modified Files: Tag: development_xmlrqp editquiz_display.php question_bank_util.php Log Message: Index: editquiz_display.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/frontend_general/editquiz_display.php,v retrieving revision 1.8.2.1 retrieving revision 1.8.2.2 diff -C2 -d -r1.8.2.1 -r1.8.2.2 *** editquiz_display.php 16 Aug 2005 15:51:35 -0000 1.8.2.1 --- editquiz_display.php 19 Aug 2005 19:49:31 -0000 1.8.2.2 *************** *** 53,56 **** --- 53,57 ---- echo "<td><a href=\"javascript:takeaction('quiz_edit','$qID');\">edit</a></td>\n"; echo "<td><a href=\"javascript:quiztry('continue_quiz','$qID');\">try</a></td>\n"; + echo "<td><a href=\"javascript:takeaction('quiz_report','$qID');\">results</a></td>\n"; echo "<td><a href=\"javascript:takeaction('quiz_xml','$qID');\">xml</a></td>\n"; echo "<td><a href=\"javascript:takeaction('quiz_delete','$qID');\"><font color='red'>del</font></a></td></tr>\n"; Index: question_bank_util.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/frontend_general/question_bank_util.php,v retrieving revision 1.3.2.1 retrieving revision 1.3.2.2 diff -C2 -d -r1.3.2.1 -r1.3.2.2 *** question_bank_util.php 17 Aug 2005 11:24:06 -0000 1.3.2.1 --- question_bank_util.php 19 Aug 2005 19:49:31 -0000 1.3.2.2 *************** *** 112,117 **** if ('new' == $source or NULL == $question) { ! ! show_array($user); $question['questionID'] = '0'; $question['questionAnsKey'] = 'ans1'; --- 112,117 ---- if ('new' == $source or NULL == $question) { ! ! //show_array($user); $question['questionID'] = '0'; $question['questionAnsKey'] = 'ans1'; *************** *** 124,128 **** if ($user['email']!='') { ! $question['questionUserLastEdited'].=' <'.$user['email'].'>'; } } --- 124,128 ---- if ($user['email']!='') { ! $question['questionUserLastEdited'].=' <'.$user['email'].'>'; } } |