Update of /cvsroot/phpmp/phpMP/modules
In directory usw-pr-cvs1:/tmp/cvs-serv27978/modules
Modified Files:
user_side.php
Log Message:
Fixed a few problems with invalid logins.
Index: user_side.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/modules/user_side.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** user_side.php 5 Apr 2002 06:24:00 -0000 1.4
--- user_side.php 5 Apr 2002 07:24:57 -0000 1.5
***************
*** 2,5 ****
--- 2,6 ----
$identFile = "user_side.php";
+ global $PHP_SELF;
if($MPCONF['USR']['username'] != "Anonymous") {
***************
*** 10,14 ****
} else {
$blockname = "Login";
! $content .= "<form action='" . $MPCONF['GEN']['uri'] . "/login.php' method='post'>\n";
$content .= "<table>\n";
$content .= " <tr>\n";
--- 11,15 ----
} else {
$blockname = "Login";
! $content .= "<form action='" . $PHP_SELF . "' method='post'>\n";
$content .= "<table>\n";
$content .= " <tr>\n";
|