Browse Source

Update admin.php

replacing text with new added key values from language files (;errors - Invalid_Error)
pull/508/head
vallyol 4 years ago
committed by GitHub
parent
commit
172bc2ac7a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      system/admin/admin.php

+ 1
- 1
system/admin/admin.php View File

@ -44,7 +44,7 @@ function session($user, $pass)
{
$user_file = 'config/users/' . $user . '.ini';
if (!file_exists($user_file)) {
return $str = '<div class="error-message"><ul><li class="alert alert-danger">ERROR: Invalid username or password.</li></li></div>';
return $str = '<div class="error-message"><ul><li class="alert alert-danger">' . i18n('Invalid_Error') . '</li></li></div>';
}
$user_enc = user('encryption', $user);


Loading…
Cancel
Save