From: Juliette W. <jv...@us...> - 2005-06-16 11:45:07
|
Update of /cvsroot/stack/stack-1-0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8615 Modified Files: Tag: frontend_dev chat.php documentation.php editquiz.php import_question_screen.php index.php question_bank.php select_quiz.php Removed Files: Tag: frontend_dev ToDo.txt front_end_display.php registration_screen.php update_info.php Log Message: Put code back into index.php, put session_starts back in the files. Index: import_question_screen.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/Attic/import_question_screen.php,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** import_question_screen.php 14 Jun 2005 16:01:04 -0000 1.1.2.1 --- import_question_screen.php 16 Jun 2005 11:44:44 -0000 1.1.2.2 *************** *** 22,25 **** --- 22,26 ---- // (1) Process Input - this sets $action, $user and $username /////////////////////////////////////////////////////////////// + session_start(); include('stackstd.php'); $default_action = ''; --- ToDo.txt DELETED --- --- front_end_display.php DELETED --- Index: editquiz.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/editquiz.php,v retrieving revision 1.10.2.5 retrieving revision 1.10.2.6 diff -C2 -d -r1.10.2.5 -r1.10.2.6 *** editquiz.php 16 Jun 2005 04:11:38 -0000 1.10.2.5 --- editquiz.php 16 Jun 2005 11:44:44 -0000 1.10.2.6 *************** *** 9,12 **** --- 9,14 ---- */ + session_start(); + require_once("other/ListMenu.php"); require_once("stackstd.php"); --- registration_screen.php DELETED --- Index: index.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/index.php,v retrieving revision 1.17.2.4 retrieving revision 1.17.2.5 diff -C2 -d -r1.17.2.4 -r1.17.2.5 *** index.php 16 Jun 2005 11:28:50 -0000 1.17.2.4 --- index.php 16 Jun 2005 11:44:44 -0000 1.17.2.5 *************** *** 30,37 **** /////////////////////////////////////////////////////////////// include('stackstd.php'); $default_action = 'loginscreen'; include($stack_root.'/frontend_general/process_input.php'); ! include('front_end_display.php'); /////////////////////////////////////////////////////////////// --- 30,38 ---- /////////////////////////////////////////////////////////////// + session_start(); include('stackstd.php'); $default_action = 'loginscreen'; include($stack_root.'/frontend_general/process_input.php'); ! include($stack_root.'/frontend_general/front_end_display.php'); /////////////////////////////////////////////////////////////// *************** *** 50,53 **** --- 51,55 ---- ////////////////////////////////////////////////////////////// + include('html/pagehead.php'); Index: documentation.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/documentation.php,v retrieving revision 1.2.2.3 retrieving revision 1.2.2.4 diff -C2 -d -r1.2.2.3 -r1.2.2.4 *** documentation.php 14 Jun 2005 15:50:05 -0000 1.2.2.3 --- documentation.php 16 Jun 2005 11:44:44 -0000 1.2.2.4 *************** *** 27,30 **** --- 27,31 ---- // (1) Process Input - this sets $action, $user and $username /////////////////////////////////////////////////////////////// + session_start(); include('stackstd.php'); $default_action = ''; --- update_info.php DELETED --- Index: question_bank.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/question_bank.php,v retrieving revision 1.3.2.14 retrieving revision 1.3.2.15 diff -C2 -d -r1.3.2.14 -r1.3.2.15 *** question_bank.php 16 Jun 2005 10:59:34 -0000 1.3.2.14 --- question_bank.php 16 Jun 2005 11:44:44 -0000 1.3.2.15 *************** *** 28,31 **** --- 28,32 ---- // (1) Process Input - this sets $action, $user and $username /////////////////////////////////////////////////////////////// + session_start(); include('stackstd.php'); $default_action = 'questionbank_screen'; Index: chat.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/chat.php,v retrieving revision 1.8.2.2 retrieving revision 1.8.2.3 diff -C2 -d -r1.8.2.2 -r1.8.2.3 *** chat.php 14 Jun 2005 15:50:05 -0000 1.8.2.2 --- chat.php 16 Jun 2005 11:44:44 -0000 1.8.2.3 *************** *** 12,15 **** --- 12,16 ---- * */ + session_start(); require_once("stackstd.php"); include('stackstd.php'); Index: select_quiz.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/select_quiz.php,v retrieving revision 1.1.4.2 retrieving revision 1.1.4.3 diff -C2 -d -r1.1.4.2 -r1.1.4.3 *** select_quiz.php 14 Jun 2005 15:50:06 -0000 1.1.4.2 --- select_quiz.php 16 Jun 2005 11:44:44 -0000 1.1.4.3 *************** *** 31,34 **** --- 31,35 ---- // (1) Process Input - this sets $action, $user and $username /////////////////////////////////////////////////////////////// + session_start(); $action = 'choose_quiz'; include('stackstd.php'); |