[PHPPlanner-cvs] phpplanner common.php,1.10,1.11 install.php,1.8,1.9
Status: Beta
Brought to you by:
tomsommer
From: Tom S. <tom...@us...> - 2004-04-24 22:15:08
|
Update of /cvsroot/phpplanner/phpplanner In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31086 Modified Files: common.php install.php Log Message: Be less harsh about installed status, assume that is config.php is there - we are installed Index: install.php =================================================================== RCS file: /cvsroot/phpplanner/phpplanner/install.php,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- install.php 23 Apr 2004 19:03:53 -0000 1.8 +++ install.php 24 Apr 2004 22:15:00 -0000 1.9 @@ -132,7 +132,6 @@ fwrite($fp, $fdata); fclose($fp); - rename(__FILE__,__FILE__ .'.lock'); header("Location: index.php"); } else Index: common.php =================================================================== RCS file: /cvsroot/phpplanner/phpplanner/common.php,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- common.php 7 Sep 2003 16:07:53 -0000 1.10 +++ common.php 24 Apr 2004 22:14:59 -0000 1.11 @@ -1,10 +1,6 @@ <? - if ( is_file('install.php.lock') && is_file('install.php') ) - { - die('Please remove the installer (install.php)'); - } - if ( is_file('install.php') ) + if ( !is_file('config.php') ) { header('Location: install.php'); die(); |