summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9e1ba3b)
raw | patch | inline | side by side (parent: 9e1ba3b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 27 Jan 2006 12:40:18 +0000 (12:40 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 27 Jan 2006 12:40:18 +0000 (12:40 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2596 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/personal/environment/class_environment.inc | patch | blob | history |
diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc
index b33b32fdb07eb26a40e5c61c2a00b8996015a71a..2a3613535a401372b3271ed8a2d54ca34f0eec54 100644 (file)
$tmp2['name'] =$tmp[1];
$tmp2['mountPoint'] =$tmp[2];
if(isset($tmp[3])){
- $tmp2['Username'] =$tmp[3];
+ $tmp2['OtherStuff'] =$tmp[3];
+ }else{
+ $tmp2['OtherStuff'] ="";
+ }
+ if(isset($tmp[4])){
+ $tmp2['Username'] =$tmp[4];
}else{
$tmp2['Username'] ="";
}
/* Preparing the new assignment */
$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']]['OtherStuff']="";
$this->gotoShares[$a_share['name']."|".$a_share['server']]['mountPoint']=$s_mount;
}
}
/* Prepare Shares */
$this->attrs['gotoShare']=array();
foreach($this->gotoShares as $name => $share){
- $this->attrs['gotoShare'][] =$share['server']."|".$share['name']."|".$share['mountPoint']."|".$share['Username'];
+ $this->attrs['gotoShare'][] =$share['server']."|".$share['name']."|".$share['mountPoint']."|".$share['OtherStuff']."|".$share['Username'];
}
if((!empty($this->gotoKioskProfile))&&($this->gotoKioskProfile != "none")){