summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0793336)
raw | patch | inline | side by side (parent: 0793336)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 12 Jul 2010 07:43:21 +0000 (07:43 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 12 Jul 2010 07:43:21 +0000 (07:43 +0000) |
-
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18987 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18987 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/kolab/personal/connectivity/kolab/class_kolabAccount.inc | patch | blob | history |
diff --git a/gosa-plugins/kolab/personal/connectivity/kolab/class_kolabAccount.inc b/gosa-plugins/kolab/personal/connectivity/kolab/class_kolabAccount.inc
index 44e9e506a7bd4ae9276379497359fc2bda56a8f7..0af79626d0b6aef22e75ee1f185ac3452416a2a1 100644 (file)
/* Load attributes */
foreach($this->attributes as $val){
- $smarty->assign("$val", $this->$val);
+ $smarty->assign("$val", set_post($this->$val));
}
$tmp = $this->plInfo();
if ($_POST['delegate_address'] != ""){
/* Valid email address specified? */
- $address= $_POST['delegate_address'];
+ $address= get_post('delegate_address');
$valid= FALSE;
if (!tests::is_email($address)){
if (!tests::is_email($address, TRUE)){
/* Delete forward email addresses */
if ((isset($_POST['delete_delegation'])) && (isset($_POST['delegate_list']))){
if (count($_POST['delegate_list']) && $this->acl_is_writeable("kolabDelegate")){
- $this->delDelegate ($_POST['delegate_list']);
+ $this->delDelegate (get_post('delegate_list'));
}
}
'ACT_REJECT_IF_CONFLICTS' => _("Reject if conflicts"),
'ACT_MANUAL_IF_CONFLICTS' => _("Manual if conflicts"),
'ACT_MANUAL' => _("Manual"));
- $smarty->assign('policies', $policies);
+ $smarty->assign('policies', set_post($policies));
/* Adjust checkbox */
if ($this->unrestrictedMailSize){
/* Smarty will produce <option value=""></option> and tidy don't like that, so tell smarty to create no option (array();)*/
$smarty->assign("kolabDelegate", array());
} else {
- $smarty->assign("kolabDelegate", $this->kolabDelegate);
+ $smarty->assign("kolabDelegate", set_post($this->kolabDelegate));
}
$smarty->assign("mail_account",$this->mail_Account);
if(!$this->acl_is_readable("kolabInvitationPolicy")){
$name='';
}
- $invitation.= "<input name=\"address$nr\" size=16 maxlength=60 value=\"$name\" id='address".$nr."' ".$dis.">";
+ $invitation.= "<input type='text'name=\"address$nr\" size=16 maxlength=60 value=\"".set_post($name)."\" id='address".$nr."' ".$dis.">";
}
$invitation.= "</td>";
/* Assign buttons */
$button= "";
if ($nr == count($this->kolabInvitationPolicy)-1){
- $button= "<input type='image' name=\"add_inv_".$nr."\" src='images/lists/new.png' id='add".$nr."' ".$dis.">";
+ $button= "<button type='submit' name=\"add_inv_".$nr."\" id='add".$nr."' ".$dis.">".msgPool::addButton()."</button>";
}
if ($nr != 0) {
- $button.= "<input type='image' name=\"del_inv_".$nr."\" src='images/lists/trash.png' id='remove".$nr."' ".$dis.">";
+ $button.= "<button type='submit' name=\"del_inv_".$nr."\" id='remove".$nr."' ".$dis.">".msgPool::delButton()."</button>";
}
$invitation.= "</select> </td>
$smarty->assign("changeState", $changeState);
$smarty->assign("kolabState",$this->is_account);
-
$smarty->assign("multiple_support",$this->multiple_support_active);
foreach($this->attributes as $attr){
$smarty->assign("use_".$attr,in_array($attr,$this->multi_boxes));
/* Anonymous? */
if (!isset($_POST["address$nr"])){
- $this->kolabInvitationPolicy[]= $_POST["policy$nr"];
+ $this->kolabInvitationPolicy[]= get_post("policy$nr");
} else {
- $this->kolabInvitationPolicy[]= $_POST["address$nr"].": ".$_POST["policy$nr"];
+ $this->kolabInvitationPolicy[]= get_post("address$nr").": ".get_post("policy$nr");
}
$nr++;