diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-21 12:05:36 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-21 12:05:36 +0000 |
commit | 536fe2bbfb1c2fbb5fbdc46fce3caeb6193c6432 (patch) | |
tree | 4a5cc232cc53313e3a5f821a3f168d094d5d8feb /includes/theme.inc | |
parent | 1a0e5b534c3f664780b22751f2e04f945369267e (diff) | |
download | brdo-536fe2bbfb1c2fbb5fbdc46fce3caeb6193c6432.tar.gz brdo-536fe2bbfb1c2fbb5fbdc46fce3caeb6193c6432.tar.bz2 |
#210479 by catch, dvessel: add newlines to list items, so inline display and RTL issues are resolved
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 26f1eaa27..51957186b 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1429,7 +1429,7 @@ function theme_item_list($items = array(), $title = NULL, $type = 'ul', $attribu if ($i == $num_items - 1) { $attributes['class'] = empty($attributes['class']) ? 'last' : ($attributes['class'] .' last'); } - $output .= '<li'. drupal_attributes($attributes) .'>'. $data .'</li>'; + $output .= '<li'. drupal_attributes($attributes) .'>'. $data ."</li>\n"; } $output .= "</$type>"; } |