diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-04 20:53:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-04 20:53:19 +0000 |
commit | d45bf0f1e7614e961ed45d85a99e126def3edf64 (patch) | |
tree | a8c02a2aac5aab0e1cd0a16a908befff18b3b5c9 /includes/theme.inc | |
parent | a5f76cd53ea14ec9bc73a59b6a9d06845d849818 (diff) | |
download | brdo-d45bf0f1e7614e961ed45d85a99e126def3edf64.tar.gz brdo-d45bf0f1e7614e961ed45d85a99e126def3edf64.tar.bz2 |
- Patch 185 by Ax: fixed undefined variables, synchronized xtemplate with sf, etc.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index cbd632475..0a9fb1074 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -403,7 +403,7 @@ function theme_mark() { @return a string containing the \a list output. **/ function theme_item_list($items = array(), $title = NULL) { - $output .= "<div class=\"item-list\">"; + $output = "<div class=\"item-list\">"; if (isset($title)) { $output .= "<h3>$title</h3>"; } |