Code

Added slash fix
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 29 May 2006 11:45:25 +0000 (11:45 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 29 May 2006 11:45:25 +0000 (11:45 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3548 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/environment/class_logonManagementDialog.inc

index a8a2821b069d83649ac5d19b66618a400495836d..373b1d25aad20df64a85f3296c1b2ccc46eac829 100644 (file)
@@ -80,7 +80,7 @@ class logonManagementDialog extends plugin
     if(isset($_POST['dialogissubmitted'])){
       foreach($this->attributes as $attr){
         if(isset($_POST[$attr])){
-          $this->$attr= $_POST[$attr]
+          $this->$attr = stripslashes($_POST[$attr])
         }else{
           $this->$attr = false;
         }