From: cajus Date: Tue, 27 Apr 2010 08:18:20 +0000 (+0000) Subject: Added ! X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7b4d037111b21d7a25bace16bd97734a86c8252f;p=gosa.git Added ! git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17868 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/html/index.php b/gosa-core/html/index.php index 6389fc412..df3cbb3fb 100644 --- a/gosa-core/html/index.php +++ b/gosa-core/html/index.php @@ -333,7 +333,7 @@ if (($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['login'])) || $htacces $ui= ldap_login_user($username, $_POST["password"]); } if ($ui === NULL || !$ui) { - $message= _("Please check the username/password combination."); + $message= _("Please check the username/password combination!"); $smarty->assign ('nextfield', 'password'); session::global_set('config',$config); new log("security","login","",array(),"Authentication failed for user \"$username\""); diff --git a/gosa-core/html/password.php b/gosa-core/html/password.php index 9bbeab615..cce461f4a 100644 --- a/gosa-core/html/password.php +++ b/gosa-core/html/password.php @@ -251,11 +251,11 @@ if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['apply'])) { $ui= ldap_login_user($uid, $current_password); if ($ui === NULL) { - $message[]= _("Please check the username/password combination."); + $message[]= _("Please check the username/password combination!"); } else { $acls = $ui->get_permissions($ui->dn, "users/password"); if (!preg_match("/w/i", $acls)) { - $message[]= _("You have no permissions to change your password."); + $message[]= _("You have no permissions to change your password!"); } } }