From: pkiddie <pk...@us...> - 2005-08-22 17:20:34
|
Update of /cvsroot/stack/stack-1-0/scripts/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3139/scripts/install Modified Files: Tag: development_xmlrqp stackInstall.php stackUpdateDatabase.php Log Message: Code comments added Schema version checking added to index.php Index: stackUpdateDatabase.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/scripts/install/stackUpdateDatabase.php,v retrieving revision 1.3.2.3 retrieving revision 1.3.2.4 diff -C2 -d -r1.3.2.3 -r1.3.2.4 *** stackUpdateDatabase.php 17 Aug 2005 16:48:46 -0000 1.3.2.3 --- stackUpdateDatabase.php 22 Aug 2005 17:20:18 -0000 1.3.2.4 *************** *** 7,14 **** <?php ! //<PDK> edited here as fresh installation fails to load stackstd require_once('../../stackstd.php'); ! /** This PHP script simply adds new fields to mySQL for metadata. This affects both questions and quizzes */ // v1.1 - Changed questionUserLastEdited, quizUserLastEdited field to text type --- 7,15 ---- <?php ! //<PDK>fresh installation fails to load stackstd, solved in new version require_once('../../stackstd.php'); ! /** This PHP script simply adds new fields to STACK database for question and quiz metadata, ! * and refines some existing fields */ // v1.1 - Changed questionUserLastEdited, quizUserLastEdited field to text type Index: stackInstall.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/scripts/install/stackInstall.php,v retrieving revision 1.13.2.1 retrieving revision 1.13.2.2 diff -C2 -d -r1.13.2.1 -r1.13.2.2 *** stackInstall.php 1 Aug 2005 21:56:33 -0000 1.13.2.1 --- stackInstall.php 22 Aug 2005 17:20:18 -0000 1.13.2.2 *************** *** 15,19 **** // To install, add comments to this line. ! //die(); --- 15,19 ---- // To install, add comments to this line. ! die(); |