|
From: mdw c. <myd...@li...> - 2002-02-19 11:24:52
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs/include Modified Files: modules.init.php Log Message: I was forced to desactivate the feature of the login delay in order to the login system work. I'll fix it later. =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/modules.init.php,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- modules.init.php 19 Feb 2002 11:05:50 -0000 1.7 +++ modules.init.php 19 Feb 2002 11:24:21 -0000 1.8 @@ -10,12 +10,14 @@ */ include DYNA_ROOT."/modules/modules.class.php"; -include DYNA_ROOT."/modules/hello/hello.class.php"; -include DYNA_ROOT."/modules/ccs/ccs.class.php"; +//include DYNA_ROOT."/modules/hello/hello.class.php"; +//include DYNA_ROOT."/modules/ccs/ccs.class.php"; include DYNA_ROOT."/modules/auth/auth.class.php"; //$ACTIVE_MODULES["ccs"]=new ccs_module($DBH); //$ACTIVE_MODULES["hello"]=new hello_module(); $ACTIVE_MODULES["auth"]=new auth_module($DBH); +//$ACTIVE_MODULES["ccs"]=new ccs_module($DBH); +//$ACTIVE_MODULES["hello"]=new hello_module(); ?> |