From: hickert Date: Tue, 27 Jun 2006 10:21:05 +0000 (+0000) Subject: Removed escapes from posts X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f1c16407d6995ceec5626424f48aadab7fa3206a;p=gosa.git Removed escapes from posts git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3937 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/environment/class_hotplugDialog.inc b/plugins/personal/environment/class_hotplugDialog.inc index 6adf30896..dbb082141 100644 --- a/plugins/personal/environment/class_hotplugDialog.inc +++ b/plugins/personal/environment/class_hotplugDialog.inc @@ -94,7 +94,7 @@ class hotplugDialog extends plugin if(isset($_POST['dialogissubmitted'])){ foreach($this->attributes as $s_attr){ if(isset($_POST[$s_attr])){ - $this->$s_attr = $_POST[$s_attr]; + $this->$s_attr = stripslashes($_POST[$s_attr]); }else{ $this->$s_attr = false; }