summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 48803ee)
raw | patch | inline | side by side (parent: 48803ee)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 18 Nov 2010 15:44:55 +0000 (15:44 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 18 Nov 2010 15:44:55 +0000 (15:44 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20276 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/gosa-plugins/groupware/personal/groupware/class_FilterManager.inc b/gosa-plugins/groupware/personal/groupware/class_FilterManager.inc
index 396bff5a561289bd475fafe48e1657be2389c587..30453375b89454274e6e67d25cbd4ea926cec084 100644 (file)
$acl = preg_replace("/r/","rw", $acl);
$this->filterListing= new sortableListing();
- $this->filterListing->setDeleteable(true);
- $this->filterListing->setEditable(true);
+ $this->filterListing->setDeleteable(TRUE);
+ $this->filterListing->setEditable(TRUE);
$this->filterListing->setColspecs(array('*'));
$this->filterListing->setWidth("100%");
$this->filterListing->setHeight("150px;");
diff --git a/gosa-plugins/groupware/personal/groupware/class_Groupware.inc b/gosa-plugins/groupware/personal/groupware/class_Groupware.inc
index 121e6e3861a60d92cbbaf05fb6c062f6e0c12ff9..b5b896a1f2f2807904349fb1209ba4b9cb7f012f 100644 (file)
public function hasFeaturebeenChanged($featureName)
{
//TODO: must be implemented.
- return true;
+ return TRUE;
}
$smarty->assign("mailLocations", $this->mailLocations);
if (count($this->vacationTemplates)){
- $smarty->assign("displayTemplateSelector", "true");
+ $smarty->assign("displayTemplateSelector", "TRUE");
$smarty->assign("vacationTemplate", set_post($this->vacationTemplate));
$smarty->assign("vacationTemplates", set_post($this->vacationTemplates));
$smarty->assign("template", set_post(get_post('vacation_template')));
} else {
- $smarty->assign("displayTemplateSelector", "false");
+ $smarty->assign("displayTemplateSelector", "FALSE");
}
$smarty->assign("uid", $this->uid);
diff --git a/gosa-plugins/groupware/personal/groupware/class_GroupwareDao.inc b/gosa-plugins/groupware/personal/groupware/class_GroupwareDao.inc
index 0e5e57127eeb34cd06d31d352b06b076edfd8345..887f597a0c7ba430997916a8e6786286b91ca867 100644 (file)
$resultArr["mailLimitSendValue"] = $comp["mailLimits"]["send"];
if(empty($comp["vacation"]["message"])){
- $resultArr["vacationEnabled"] = FAlSE;
+ $resultArr["vacationEnabled"] = FALSE;
$resultArr["vacationMessage"] = "";
}
else{