mirror of
https://github.com/bilde2910/Hauk.git
synced 2026-01-23 02:24:09 +00:00
Fixed translation key
This commit is contained in:
parent
ec223ba4e6
commit
56e216375c
1 changed files with 1 additions and 1 deletions
|
|
@ -808,7 +808,7 @@ function authenticated() {
|
|||
if (!isset($_POST["usr"])) die($LANG["username_required"]);
|
||||
requirePOST("pwd", "usr");
|
||||
// Jump out if we cannot find the htpasswd file.
|
||||
if (!file_exists(getConfig("htpasswd_path"))) die($LANG["cannot_find_htpasswd_file"]);
|
||||
if (!file_exists(getConfig("htpasswd_path"))) die($LANG["cannot_find_password_file"]);
|
||||
$file = fopen(getConfig("htpasswd_path"), "r");
|
||||
$authed = false;
|
||||
while (($line = fgets($file)) !== false && !$authed) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue