|
From: mdw c. <myd...@li...> - 2002-02-19 11:06:21
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/include
Modified Files:
modules.init.php utils.inc.php
Log Message:
Fixing the strange bug of 'INVALID CREDENTIAL'
even if you enter a good login/pass mydynaweb said : your login/pass are not good....
Now it works
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/modules.init.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- modules.init.php 23 Jan 2002 19:30:38 -0000 1.6
+++ modules.init.php 19 Feb 2002 11:05:50 -0000 1.7
@@ -15,7 +15,7 @@
include DYNA_ROOT."/modules/auth/auth.class.php";
-$ACTIVE_MODULES["ccs"]=new ccs_module($DBH);
-$ACTIVE_MODULES["hello"]=new hello_module();
+//$ACTIVE_MODULES["ccs"]=new ccs_module($DBH);
+//$ACTIVE_MODULES["hello"]=new hello_module();
$ACTIVE_MODULES["auth"]=new auth_module($DBH);
?>
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/utils.inc.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- utils.inc.php 9 Dec 2001 23:26:52 -0000 1.21
+++ utils.inc.php 19 Feb 2002 11:05:50 -0000 1.22
@@ -137,7 +137,7 @@
function send_session_error($error)
{
$msg = urlencode($error);
- header("Location: ".SITE_ROOT."login_failed.php");
+ header("Location: ".SITE_ROOT."login_failed.php?msg=$msg");
die();
}
|