From: hickert Date: Fri, 27 Jan 2006 12:32:24 +0000 (+0000) Subject: Corrected index for new gotoShares X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9e1ba3b487ebc85fb88ddcd5da01118b67a607a0;p=gosa.git Corrected index for new gotoShares git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2595 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc index 069e87044..b33b32fdb 100644 --- a/plugins/personal/environment/class_environment.inc +++ b/plugins/personal/environment/class_environment.inc @@ -508,9 +508,9 @@ class environment extends plugin $s_mount = $_POST['gotoShareMountPoint']; $s_user = $_POST['ShareUser']; /* Preparing the new assignment */ - $this->gotoShares[$a_share['name']]=$a_share; - $this->gotoShares[$a_share['name']]['Username']=$s_user; - $this->gotoShares[$a_share['name']]['mountPoint']=$s_mount; + $this->gotoShares[$a_share['name']."|".$a_share['server']]=$a_share; + $this->gotoShares[$a_share['name']."|".$a_share['server']]['Username']=$s_user; + $this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount; } }