summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ed800b3)
raw | patch | inline | side by side (parent: ed800b3)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 15 Sep 2006 09:01:27 +0000 (09:01 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 15 Sep 2006 09:01:27 +0000 (09:01 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4687 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/users/tabs_user.inc | patch | blob | history |
index ce7cf00fbc4b33c54b84e9b1cd67895fa7cec1cb..b4d52568d9c3aec33ce596637d5fd5d1c421d582 100644 (file)
$baseobject= $this->by_object['user'];
foreach ($this->by_object as $name => $obj){
+ /* Adding uid to sub plugins of connectivity */
+ if($name == "connectivity"){
+ foreach ($obj->plugin_name as $plg_name){
+ if(isset($obj->plugin[$plg_name]->uid)){
+ $obj->plugin[$plg_name]->uid = $baseobject->uid;
+ }
+ }
+ }
+
/* Don't touch base object */
if ($name != 'user'){
$obj->parent= &$this;
$obj->uid= $baseobject->uid;
$obj->sn= $baseobject->uid;
$obj->givenName= $baseobject->uid;
- $this->by_object[$name]= $obj;
}
/* Copy mail if needed */
}
}
+ $this->by_object[$name]= $obj;
+
/* Update parent in base object */
$this->by_object['user']->parent= &$this;
}