summaryrefslogtreecommitdiff
path: root/modules/filter/filter.pages.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-04-14 17:48:46 +0000
committerDries Buytaert <dries@buytaert.net>2008-04-14 17:48:46 +0000
commit56d2664a904119f73e7df4fb355e4c525e040b70 (patch)
tree0ac2302d485b4b0769d269825880975428bd3b0c /modules/filter/filter.pages.inc
parent46cda4c6ae388cd2e918ae2aec887e617e5bd44e (diff)
downloadbrdo-56d2664a904119f73e7df4fb355e4c525e040b70.tar.gz
brdo-56d2664a904119f73e7df4fb355e4c525e040b70.tar.bz2
- Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long discussion we've decided to make the concatenation operator consistent with the other operators.
Diffstat (limited to 'modules/filter/filter.pages.inc')
-rw-r--r--modules/filter/filter.pages.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/filter/filter.pages.inc b/modules/filter/filter.pages.inc
index 20c42095d..46af8bdcd 100644
--- a/modules/filter/filter.pages.inc
+++ b/modules/filter/filter.pages.inc
@@ -32,7 +32,7 @@ function theme_filter_tips($tips, $long = FALSE, $extra = '') {
$multiple = count($tips) > 1;
if ($multiple) {
- $output = t('input formats') .':';
+ $output = t('input formats') . ':';
}
if (count($tips)) {
@@ -42,13 +42,13 @@ function theme_filter_tips($tips, $long = FALSE, $extra = '') {
foreach ($tips as $name => $tiplist) {
if ($multiple) {
$output .= '<li>';
- $output .= '<strong>'. $name .'</strong>:<br />';
+ $output .= '<strong>' . $name . '</strong>:<br />';
}
if (count($tiplist) > 0) {
$output .= '<ul class="tips">';
foreach ($tiplist as $tip) {
- $output .= '<li'. ($long ? ' id="filter-'. str_replace("/", "-", $tip['id']) .'">' : '>') . $tip['tip'] .'</li>';
+ $output .= '<li' . ($long ? ' id="filter-' . str_replace("/", "-", $tip['id']) . '">' : '>') . $tip['tip'] . '</li>';
}
$output .= '</ul>';
}