aboutsummaryrefslogtreecommitdiffstats
path: root/identification.php
diff options
context:
space:
mode:
authorjeremydurand <jeremydurand24@hotmail.fr>2016-05-30 14:35:24 +0200
committerPierrick Le Gall <plg@piwigo.org>2016-05-30 14:35:24 +0200
commit022bfd2493ebb97e0c6d5c66430ab2b8874c82b2 (patch)
treedf979a03fda91af6654ac30490bf0e6ceb3deccc /identification.php
parentbd0d2ae6459c63ed7f7060589297bf63ae1cc619 (diff)
fixes #487 replace "Invalid password" by "Invalid username or password" (#489)
* fixes #487 replace "Invalid password" by "Invalid username or password" * missing space before exclamation mark
Diffstat (limited to 'identification.php')
-rw-r--r--identification.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/identification.php b/identification.php
index be22eb571..3e5ab1560 100644
--- a/identification.php
+++ b/identification.php
@@ -65,7 +65,7 @@ if (isset($_POST['login']))
}
else
{
- $page['errors'][] = l10n('Invalid password!');
+ $page['errors'][] = l10n('Invalid username or password!');
}
}
}