From: <cl...@us...> - 2004-01-18 02:21:46
|
Update of /cvsroot/phpwebsite-comm/modules/quotes/boost In directory sc8-pr-cvs1:/tmp/cvs-serv25282/quotes/boost Modified Files: update.php Log Message: Fixed the problem with local directories in runtime.php (n00b error :P) Index: update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/quotes/boost/update.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** update.php 19 Dec 2003 15:43:56 -0000 1.1.1.1 --- update.php 18 Jan 2004 02:21:09 -0000 1.2 *************** *** 0 **** --- 1,16 ---- + <?php + /* update.php - Script to update the module when changes are made */ + + if (!$_SESSION["OBJ_user"]->isDeity()){ + header("location:index.php"); + exit(); + } + + $status = 1; + + if ($currentVersion < "0.2.1") { + $content .= "Updating Quotes Module to Version 0.2.1<br />"; + $content .= "Local references for includes in runtime.php fixed.<br />"; + } + + ?> |