From: hickert Date: Fri, 28 Jul 2006 09:00:11 +0000 (+0000) Subject: Remove those entries that starts with ! X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d996064443325a681d02347ce9f24cfb7553cca7;p=gosa.git Remove those entries that starts with ! git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4334 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc index 32adcda8f..96f9bd883 100644 --- a/plugins/personal/environment/class_environment.inc +++ b/plugins/personal/environment/class_environment.inc @@ -602,6 +602,9 @@ class environment extends plugin $key = preg_replace("/_+[xy]$/","",$key); $key = base64_decode($key); $this->gotoShares[$key]['PwdHash'] = ""; + if(preg_match("/^!/",$this->gotoShares[$key]['server'])){ + unset($this->gotoShares[$key]); + } } } }