From: Chris S. <san...@us...> - 2005-07-14 18:26:11
|
Update of /cvsroot/stack/stack-1-0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8960 Modified Files: question_bank.php quiz.php Log Message: Index: quiz.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/quiz.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** quiz.php 14 Jul 2005 07:27:03 -0000 1.24 --- quiz.php 14 Jul 2005 18:26:03 -0000 1.25 *************** *** 8,13 **** * @subpackage Stack */ ! session_start(); ! include('stackstd.php'); $default_action = 'choose_quiz'; --- 8,16 ---- * @subpackage Stack */ ! ! /** ! * ! */ ! session_start(); include('stackstd.php'); $default_action = 'choose_quiz'; Index: question_bank.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/question_bank.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** question_bank.php 14 Jul 2005 14:13:45 -0000 1.6 --- question_bank.php 14 Jul 2005 18:26:03 -0000 1.7 *************** *** 26,32 **** */ ! /////////////////////////////////////////////////////////////// ! // (1) Process Input - this sets $action, $user and $username ! /////////////////////////////////////////////////////////////// session_start(); include('stackstd.php'); --- 26,32 ---- */ ! /************************************************************ ! * (1) Process Input - this sets $action, $user and $username ! *************************************************************/ session_start(); include('stackstd.php'); *************** *** 46,52 **** $RawAns = ''; ! ////////////////////////////////////////////////////////////// ! // (2) Perform any actions on entering the page ! ////////////////////////////////////////////////////////////// // Possible values for $action at this point are --- 46,52 ---- $RawAns = ''; ! /************************************************************ ! * (2) Perform any actions on entering the page ! *************************************************************/ // Possible values for $action at this point are *************** *** 197,203 **** ! ////////////////////////////////////////////////////////////// ! // (3) Print the page. ! ////////////////////////////////////////////////////////////// include('html/pagehead.php'); --- 197,203 ---- ! /************************************************************ ! * (3) Print the page. ! *************************************************************/ include('html/pagehead.php'); |