From: cajus Date: Fri, 9 Jun 2006 10:38:45 +0000 (+0000) Subject: Fixed share deletion X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f02816c73fa031a52f65958e4f9f3103d0315dc1;p=gosa.git Fixed share deletion git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@3753 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc index 3ade4912e..4132771b4 100644 --- a/plugins/personal/environment/class_environment.inc +++ b/plugins/personal/environment/class_environment.inc @@ -561,6 +561,7 @@ class environment extends plugin $once = false; $key = preg_replace("/^gotoShareDel_/","",$name); $key = preg_replace("/_+[xy]$/","",$key); + $key = preg_replace("/_/", ".", $key); if(isset($this->gotoShares[$key])) { unset($this->gotoShares[$key]); } @@ -569,6 +570,7 @@ class environment extends plugin $once = false; $key = preg_replace("/^gotoShareResetPwd_/","",$name); $key = preg_replace("/_+[xy]$/","",$key); + $key = preg_replace("/_/", ".", $key); $this->gotoShares[$key]['PwdHash'] = ""; } }