summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 32a36f6)
raw | patch | inline | side by side (parent: 32a36f6)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 12 Mar 2007 11:48:17 +0000 (11:48 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 12 Mar 2007 11:48:17 +0000 (11:48 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5766 594d385d-05f5-0310-b6e9-bd551577e9d8
include/sieve/class_My_Tree.inc | patch | blob | history | |
include/sieve/class_sieveElement_If.inc | patch | blob | history | |
include/sieve/class_sieveElements.inc | patch | blob | history |
index 40f59fdf1a1666daa8ca4cab24f95affb3f30286..cb18851b9b8fca3224e9e9b27597d13b1aeb7ae8 100644 (file)
foreach($this->pap as $key => $obj){
if(in_array(get_class($obj),array("sieve_if","sieve_elsif","sieve_vacation","sieve_comment","sieve_reject","sieve_fileinto","sieve_require","sieve_redirect"))){
- #$this->pap[$key]->save_object();
+ $this->pap[$key]->save_object();
}
$once = TRUE;
index 6d06ddf0bfa9a85d284c3d0ee6d877a11b6dafc2..e0c24f77bcc8d99ad88c74fb1da4c1d0f0efbcef 100644 (file)
if(($key2 === "Inverse") && ($key2 == "Inverse")){
continue;
}
- $parsed[$key][$key2] = $this->save_object_recursive($dat, ($id +1),$key2);
+ $parsed[$key][$key2] = $this->save_object_recursive($dat, ($id +1),$key2."-".$obj_id);
}
break ;
}
if(($key2 === "Inverse") && ($key2 == "Inverse")){
continue;
}
- $parsed[$key][$key2] = $this->save_object_recursive($dat, ($id + 1),$key2);
+ $parsed[$key][$key2] = $this->save_object_recursive($dat, ($id + 1),$key2."-".$obj_id);
}
break ;
}
if(($key === "Inverse") && ($key == "Inverse")){
continue;
}
- $Contents .= $this->get_as_html($dat, ($id +1),$key);
+ $Contents .= $this->get_as_html($dat, ($id +1),$key."-".$obj_id);
}
$smarty = get_smarty();
$smarty->assign("Inverse",$Inverse);
if(($key === "Inverse") && ($key == "Inverse")){
continue;
}
- $Contents .= $this->get_as_html($dat, ($id +1),$key);
+ $Contents .= $this->get_as_html($dat, ($id +1),$key."-".$obj_id);
}
$smarty = get_smarty();
$smarty->assign("Inverse",$Inverse);
index 870e380100c035acb9e57f44fc7a3f99a13a1941..3c133fdf128e10f4a4295de37fbbe3526e82a436 100644 (file)
function get_mail_boxes()
{
- return(array("not","impplemented/yet"));
+ return(array("not"=>"not","impplemented/yet"=>"impplemented/yet"));
}
}