Code

Updated meta data
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 26 Apr 2010 19:02:20 +0000 (19:02 +0000)
committercajus <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

gosa-core/Changelog
gosa-core/debian/changelog
gosa-core/include/class_pathNavigator.inc
gosa-core/plugins/personal/password/class_password.inc

index 93b4f6022f2127e3830bfcba64794430fd46ca75..c0a40bf9ab51a9ccd132392cbaf5dd46ae03fa23 100644 (file)
@@ -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
index f558066593caaf5c2e25af5e1cd0f24b56c5f2a9..70bcac552cf66f166c45b37e4c658b95e2a8f473 100644 (file)
@@ -1,3 +1,9 @@
+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)
@@ -81,7 +81,7 @@ class pathNavigator
 
   static function clear()
   {
-    session::set('pathNavigator::position','');
+    session::set('pathNavigator::position', array());
     session::set('pathNavigator::title','');
   }
 }
index f0b288b755dc085b9bacc7663fdae68ee3227623..3d25d02b0035678019f26dac229c93107953d6cb 100644 (file)
@@ -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);