Changeset 7591

Show
Ignore:
Timestamp:
04/27/09 15:09:11 (4 years ago)
Author:
p_lindheimer
Message:

fix error message so it is same wether username was correct or not

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.5/amp_conf/htdocs/recordings/includes/login.php

    r6731 r7591  
    193193              } 
    194194              else { 
    195                 $_SESSION['ari_error'] = "Incorrect Password"
     195                $_SESSION['ari_error'] = _("Incorrect Username or Password")
    196196                return; 
    197197              } 
     
    265265                  else if ($protocol_username==$username && 
    266266                             $protocol_password!=$password) { 
    267                     $_SESSION['ari_error'] = _("Incorrect Password"); 
     267                    $_SESSION['ari_error'] = _("Incorrect Username or Password"); 
    268268                    return; 
    269269                  }