summaryrefslogtreecommitdiff
path: root/includes/theme.maintenance.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-09-19 07:53:59 +0000
committerDries Buytaert <dries@buytaert.net>2008-09-19 07:53:59 +0000
commit8fc581d4d70ad4554a574d6338c96b744195a25a (patch)
tree76d31cd86d5e52f4f7d7c8ea5e81c4bb03a728cb /includes/theme.maintenance.inc
parent88c75b8772ce0d5bdf4bf430bcfc6010dd440ac2 (diff)
downloadbrdo-8fc581d4d70ad4554a574d6338c96b744195a25a.tar.gz
brdo-8fc581d4d70ad4554a574d6338c96b744195a25a.tar.bz2
- Patch #309488 by kbahey: correct capitalization of TRUE and FALSE.
Diffstat (limited to 'includes/theme.maintenance.inc')
-rw-r--r--includes/theme.maintenance.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc
index 0bc115942..1ece4e58f 100644
--- a/includes/theme.maintenance.inc
+++ b/includes/theme.maintenance.inc
@@ -87,7 +87,7 @@ function theme_task_list($items, $active = NULL) {
foreach ($items as $k => $item) {
if ($active == $k) {
$class = 'active';
- $done = false;
+ $done = FALSE;
}
else {
$class = $done ? 'done' : '';