summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 19a042b)
raw | patch | inline | side by side (parent: 19a042b)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Jul 2006 05:40:54 +0000 (05:40 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Jul 2006 05:40:54 +0000 (05:40 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4281 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/personal/generic/class_user.inc | patch | blob | history |
index a5f18a3e57ce2c968dc95bdb77ea58b05c5f931a..198f7aba0cd19a6decf0cbcb67d33eaebe76e59a 100644 (file)
/* Save base and pw_storage, since these are no LDAP attributes */
if (isset($_POST['base'])){
- foreach(array("base", "pw_storage") as $val){
+
+ $this->set_acl_base('dummy,'.$_POST['base']);
+ if($this->acl_is_moveable("base")){
+
+ foreach(array("base") as $val){
+ if(isset($_POST[$val])){
+ $data= validate($_POST[$val]);
+ if ($data != $this->$val){
+ $this->is_modified= TRUE;
+ }
+ $this->$val= $data;
+ }
+ }
+ }else{
+ print_red(sprintf(_("You are not allowed to move this object to '%s'."),LDAP::fix($_POST['base'])));
+ }
+ }
+
+ /* Get pw_storage mode */
+ if (isset($_POST['pw_storage'])){
+ foreach(array("pw_storage") as $val){
if(isset($_POST[$val])){
$data= validate($_POST[$val]);
if ($data != $this->$val){
}
}
}
+
$this->set_acl_base('dummy,'.$this->base);
}
}