Update of /cvsroot/phpmp/phpMP/modules
In directory usw-pr-cvs1:/tmp/cvs-serv8456/modules
Modified Files:
user_side.php
Log Message:
Fixed a small bug that would not allow logins to work properly on URLs requiring a parameter.
Index: user_side.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/modules/user_side.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** user_side.php 11 Apr 2002 05:40:15 -0000 1.7
--- user_side.php 21 Jul 2002 20:49:40 -0000 1.8
***************
*** 2,6 ****
$identFile = "user_side.php";
! global $PHP_SELF, $content;
if($MPCONF['USR']['username'] != "Anonymous") {
--- 2,6 ----
$identFile = "user_side.php";
! global $REQUEST_URI, $content;
if($MPCONF['USR']['username'] != "Anonymous") {
***************
*** 17,21 ****
} else {
$blockname = "Login";
! $content .= "<form action='" . $PHP_SELF . "' method='post'>\n";
$content .= "<table>\n";
$content .= " <tr>\n";
--- 17,21 ----
} else {
$blockname = "Login";
! $content .= "<form action='" . $REQUEST_URI . "' method='post'>\n";
$content .= "<table>\n";
$content .= " <tr>\n";
|