Ignore:
Timestamp:
Aug 21, 2010, 6:31:47 PM (14 years ago)
Author:
Eric
Message:

Bug 1727 fixed - The redirection does not appli to admins, webmaster and generic users.
W3C HTML 4.0 strict compliance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/NBC_UserAdvManager/trunk/admin/UAM_admin.php

    r6775 r6784  
    370370                  while($row = pwg_db_fetch_assoc($result))
    371371                {
    372                                 $msg_error1 .= (($msg_error1 <> '') ? '<br/>' : '') . l10n('Err_audit_no_casse').stripslashes($row['username']);
     372                                $msg_error1 .= (($msg_error1 <> '') ? '<br>' : '') . l10n('Err_audit_no_casse').stripslashes($row['username']);
    373373                        }
    374374                }
     
    389389                        {
    390390                                if (!ValidateUsername(stripslashes($row['username'])))
    391                                         $msg_error2 .= (($msg_error2 <> '') ? '<br/>' : '') . l10n('Err_audit_username_char').stripslashes($row['username']);
     391                                        $msg_error2 .= (($msg_error2 <> '') ? '<br>' : '') . l10n('Err_audit_username_char').stripslashes($row['username']);
    392392                        }
    393393                }
     
    413413                                  if (preg_match($pattern, $row['mail_address']))
    414414                                  {
    415                                                 $msg_error3 .=  (($msg_error3 <> '') ? '<br/>' : '') . l10n('Err_audit_email_forbidden').stripslashes($row['username']).' ('.$row['mail_address'].')';
     415                                                $msg_error3 .=  (($msg_error3 <> '') ? '<br>' : '') . l10n('Err_audit_email_forbidden').stripslashes($row['username']).' ('.$row['mail_address'].')';
    416416                                        }
    417417                                }
     
    420420               
    421421    if ($msg_error1 <> '')
    422                         $errors[] = $msg_error1.'<br/><br/>';
     422                        $errors[] = $msg_error1.'<br><br>';
    423423               
    424424                if ($msg_error2 <> '')
    425                         $errors[] = $msg_error2.'<br/><br/>';
     425                        $errors[] = $msg_error2.'<br><br>';
    426426               
    427427                if ($msg_error3 <> '')
    428                 $errors[] = $msg_error3.'<br/><br/>';
     428                $errors[] = $msg_error3.'<br><br>';
    429429               
    430430                if ($msg_error1 <> '' or $msg_error2 <> '' or $msg_error3 <> '')
Note: See TracChangeset for help on using the changeset viewer.