Changeset 197

Show
Ignore:
Timestamp:
08/24/04 20:01:50 (9 years ago)
Author:
plec_
Message:

Fix email field bug

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/user_management/index.php

    r195 r197  
    126126            { 
    127127              $subject = VALIDATION_EMAIL_SUBJECT; 
    128               $url = "http://" . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . "?action=validate&username={" . $_REQUEST["username"] . "}&validation_token=" . $user_info["validation_token"]; 
     128              $url = "http://" . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . "?action=validate&username=" . $_REQUEST["username"] . "&validation_token=" . $user_info["validation_token"]; 
    129129              $body = "Hello 
    130130 
     
    546546                echo "<p class=warning>"._('Sorry, a user account is already associated to the email adress: ')."</p>\n"; 
    547547                echo "<p>"._('If it really is your email, I can'); 
    548                 echo " <a href='http://" . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . "?email={" . $_REQUEST["email"] . "}&action=mail_lost_username'>" . _('send you your username by email')."</a>\n"; 
     548                echo " <a href='http://" . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . "?email=" . $_REQUEST["email"] . "&action=mail_lost_username'>" . _('send you your username by email')."</a>\n"; 
    549549                echo _(', or even ')."\n"; 
    550                 echo " <a href='http://" . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . "?email={" . $_REQUEST["email"] . "}&action=mail_new_password'>" . _('send you a new password by email')."</a>"."</p>\n"; 
     550                echo " <a href='http://" . $_SERVER["HTTP_HOST"] . $_SERVER["PHP_SELF"] . "?email=" . $_REQUEST["email"] . "&action=mail_new_password'>" . _('send you a new password by email')."</a>"."</p>\n"; 
    551551              } 
    552552            else