summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9d89440)
raw | patch | inline | side by side (parent: 9d89440)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 26 Apr 2010 19:02:20 +0000 (19:02 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 26 Apr 2010 19:02:20 +0000 (19:02 +0000) |
Fixed clear method
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17858 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17858 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/gosa-core/Changelog b/gosa-core/Changelog
index 93b4f6022f2127e3830bfcba64794430fd46ca75..c0a40bf9ab51a9ccd132392cbaf5dd46ae03fa23 100644 (file)
--- a/gosa-core/Changelog
+++ b/gosa-core/Changelog
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
index f558066593caaf5c2e25af5e1cd0f24b56c5f2a9..70bcac552cf66f166c45b37e4c658b95e2a8f473 100644 (file)
+gosa (2.7) unstable; urgency=low
+
+ * New upstream release
+
+ -- Cajus Pollmeier <cajus@debian.org> Sun, 25 Apr 2010 18:40:02 +0200
+
gosa (2.6.8-1) unstable; urgency=low
* New upstream release
index ba458c1ef3b8648a45c181cd34867934cea5bba9..d1604a2c60ab70df9458c5c5b9fe12b49ecca16f 100644 (file)
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 f0b288b755dc085b9bacc7663fdae68ee3227623..3d25d02b0035678019f26dac229c93107953d6cb 100644 (file)
}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);