summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 78b7442)
raw | patch | inline | side by side (parent: 78b7442)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 6 Dec 2006 07:12:48 +0000 (07:12 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 6 Dec 2006 07:12:48 +0000 (07:12 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5313 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/ogroups/class_ogroup.inc | patch | blob | history |
index 6093ef128bfd083668dbfe237288d5758f8329d9..463ee0e2ccb8443dc586e99e77fefb1d82b69e41 100644 (file)
$smarty->assign($name."ACL",$this->getacl($name));
}
- /* Create base acls */
- $baseACL = $this->getacl("base",(!is_object($this->parent) && !isset($_SESSION['edit'])));
- if(!$this->acl_is_moveable()) {
- $baseACL = preg_replace("/w/","",$baseACL);
- }
- $smarty->assign("baseACL", $baseACL);
-
/* Base select dialog */
$once = true;
foreach($_POST as $name => $value){
if($this->dialog->isClosed()){
$this->dialog = false;
}elseif($this->dialog->isSelected()){
- $this->base = $this->dialog->isSelected();
+
+ /* A new base was selected, check if it is a valid one */
+ $tmp = $this->get_allowed_bases();
+ if(isset($tmp[$this->dialog->isSelected()])){
+ $this->base = $this->dialog->isSelected();
+ }
$this->dialog= false;
}else{
return($this->dialog->execute());
{
/* Save additional values for possible next step */
if (isset($_POST['ogroupedit'])){
+
+ /* Create a base backup and reset the
+ base directly after calling plugin::save_object();
+ Base will be set seperatly a few lines below */
+ $base_tmp = $this->base;
plugin::save_object();
-
+ $this->base = $base_tmp;
+
+ /* Save base, since this is no LDAP attribute */
+ $tmp = $this->get_allowed_bases();
+ if(isset($_POST['base'])){
+ if(isset($tmp[$_POST['base']])){
+ $this->base= $_POST['base'];
+ }
+ }
}
}
$this->set_acl_base($this->base);
}
- if ($this->orig_dn == "new" && !$this->acl_is_createable()){
- $message[]= _("You have no permissions to create a group on this 'Base'.");
- }
-
/* must: cn */
- if ($this->cn == "" && $this->acl_is_writeable("cn")){
+ if ($this->cn == ""){
$message[]= "The required field 'Name' is not set.";
}