From: hickert Date: Tue, 27 Jun 2006 10:20:36 +0000 (+0000) Subject: Removed escape slahes from posts X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2e1b17107b31aa32516daf4e401a609af20e50ca;p=gosa.git Removed escape slahes from posts git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@3936 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/environment/class_hotplugDialog.inc b/plugins/personal/environment/class_hotplugDialog.inc index a314c7850..210d787a7 100644 --- a/plugins/personal/environment/class_hotplugDialog.inc +++ b/plugins/personal/environment/class_hotplugDialog.inc @@ -92,7 +92,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; }