From 7def203fd2a22b370c6c1625c5e61bcd430e4fd6 Mon Sep 17 00:00:00 2001 From: cajus Date: Mon, 26 Apr 2010 19:02:20 +0000 Subject: [PATCH] Updated meta data Fixed clear method git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17858 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/Changelog | 7 +++++++ gosa-core/debian/changelog | 6 ++++++ gosa-core/include/class_pathNavigator.inc | 2 +- gosa-core/plugins/personal/password/class_password.inc | 3 +++ 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/gosa-core/Changelog b/gosa-core/Changelog index 93b4f6022..c0a40bf9a 100644 --- a/gosa-core/Changelog +++ b/gosa-core/Changelog @@ -1,6 +1,13 @@ GOsa2 changelog =============== +* gosa 2.7 + - Updated default design + - Updated and fixed english wording + - Rewrote filtering methods + - Rewrote reference tabs + - Replaced all lists by either listing or sortable_listing + * gosa 2.6.9 - Fixed problem with initial phone accounts, sip type was NULL - Fixed TLS issues in the setup diff --git a/gosa-core/debian/changelog b/gosa-core/debian/changelog index f55806659..70bcac552 100644 --- a/gosa-core/debian/changelog +++ b/gosa-core/debian/changelog @@ -1,3 +1,9 @@ +gosa (2.7) unstable; urgency=low + + * New upstream release + + -- Cajus Pollmeier Sun, 25 Apr 2010 18:40:02 +0200 + gosa (2.6.8-1) unstable; urgency=low * New upstream release diff --git a/gosa-core/include/class_pathNavigator.inc b/gosa-core/include/class_pathNavigator.inc index ba458c1ef..d1604a2c6 100644 --- a/gosa-core/include/class_pathNavigator.inc +++ b/gosa-core/include/class_pathNavigator.inc @@ -81,7 +81,7 @@ class pathNavigator static function clear() { - session::set('pathNavigator::position',''); + session::set('pathNavigator::position', array()); session::set('pathNavigator::title',''); } } diff --git a/gosa-core/plugins/personal/password/class_password.inc b/gosa-core/plugins/personal/password/class_password.inc index f0b288b75..3d25d02b0 100644 --- a/gosa-core/plugins/personal/password/class_password.inc +++ b/gosa-core/plugins/personal/password/class_password.inc @@ -89,6 +89,9 @@ class password extends plugin }elseif($check_length && (strlen($_POST['new_password']) < $length)){ msg_dialog::display(_("Password change"), _("The password used as new is to short."),WARNING_DIALOG); + }elseif(!passwordMethod::is_harmless($_POST['new_password'])){ + msg_dialog::display(_("Password change"), + _("The password contains possibly problematic unicode characters."),WARNING_DIALOG); }elseif($check_hook && $check_hook_output != ""){ msg_dialog::display(_("Password change"), sprintf(_("External password changer reported a problem: %s."),$check_hook_output),WARNING_DIALOG); -- 2.30.2