summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a97f015)
raw | patch | inline | side by side (parent: a97f015)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 21 Oct 2005 14:28:48 +0000 (14:28 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 21 Oct 2005 14:28:48 +0000 (14:28 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1660 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_workstationStartup.inc | patch | blob | history |
diff --git a/plugins/admin/systems/class_workstationStartup.inc b/plugins/admin/systems/class_workstationStartup.inc
index c60e83b7c92efa7e8c126ade467fe118c7da9455..84f8724e5782d04fc63d15258b72bc5c45529d40 100644 (file)
$a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
$s_mount = $_POST['gotoShareMountPoint'];
/* Preparing the new assignment */
- $this->gotoShares[$a_share['name']]=$a_share;
- $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']]['mountPoint']=$s_mount;
}
}
/* prepare share settings */
$tmp = array();
foreach($this->gotoShares as $name => $settings){
+ $tmp2= split("\|",$name);
+ $name = $tmp2[0];
$tmp[] = $settings['server']."|".$name."|".$settings['mountPoint'];
}
$this->attrs['gotoShare']=$tmp;