Update of /cvsroot/phpmp/phpMP
In directory usw-pr-cvs1:/tmp/cvs-serv17145
Modified Files:
modules.php
Log Message:
Changed the way the auto-detect install works. One-liner. :-P
Index: modules.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/modules.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** modules.php 25 Jul 2002 20:50:07 -0000 1.9
--- modules.php 29 Jul 2002 12:49:28 -0000 1.10
***************
*** 31,38 ****
******************************************************************************/
include("config.php");
if(!defined("PHPMP_INSTALLED")) {
! die('You have not <a href="install.php">installed phpMP</a>. Please do so before attempting to use this software.');
}
--- 31,39 ----
******************************************************************************/
+ // Include The Main Configuration File
include("config.php");
if(!defined("PHPMP_INSTALLED")) {
! header('Location: ./install.php');
}
|