summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 661482c)
raw | patch | inline | side by side (parent: 661482c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 6 Oct 2005 08:45:01 +0000 (08:45 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 6 Oct 2005 08:45:01 +0000 (08:45 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1504 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 ca3b22c013585548a9042e07e7263422c1e6ea5e..b179c431d580dd383992fed08c82bb062f3a7d33 100644 (file)
$tmp2['server'] =$tmp[0];
$tmp2['name'] =$tmp[1];
$tmp2['mountPoint'] =$tmp[2];
- $this->gotoShares[$tmp[1].$tmp[0]]=$tmp2;
+ $this->gotoShares[$tmp[1]."|".$tmp[0]]=$tmp2;
}
}
foreach($entry['goExportEntry'] as $export){
$shareAttrs = split("\|",$export);
if($listboxEntry) {
- $return[$shareAttrs[0].$entry['cn'][0]] = $shareAttrs[0]." - ".$entry['cn'][0];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]] = $shareAttrs[0]." - ".$entry['cn'][0];
}else{
- $return[$shareAttrs[0].$entry['cn'][0]]['server'] = $entry['cn'][0];
- $return[$shareAttrs[0].$entry['cn'][0]]['name'] = $shareAttrs[0];
- $return[$shareAttrs[0].$entry['cn'][0]]['description'] = $shareAttrs[1];
- $return[$shareAttrs[0].$entry['cn'][0]]['type'] = $shareAttrs[2];
- $return[$shareAttrs[0].$entry['cn'][0]]['charset'] = $shareAttrs[3];
- $return[$shareAttrs[0].$entry['cn'][0]]['path'] = $shareAttrs[4];
- $return[$shareAttrs[0].$entry['cn'][0]]['option'] = $shareAttrs[5];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]]['server'] = $entry['cn'][0];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]]['name'] = $shareAttrs[0];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]]['description'] = $shareAttrs[1];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]]['type'] = $shareAttrs[2];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]]['charset'] = $shareAttrs[3];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]]['path'] = $shareAttrs[4];
+ $return[$shareAttrs[0]."|".$entry['cn'][0]]['option'] = $shareAttrs[5];
}
}
}
$a_return = array();
if(is_array($this->gotoShares)){
foreach($this->gotoShares as $share){
- $a_return[$share['name']]= $share['name']." [".$share['server']."]";
+ $a_return[$share['name']."|".$share['server']]= $share['name']." [".$share['server']."]";
}
}
return($a_return);