From db42745522a2838112f827bee0201e0ada23cb39 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Sat, 17 Dec 2005 10:35:59 +0000 Subject: - Code style --- includes/common.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes') diff --git a/includes/common.inc b/includes/common.inc index 3c56472df..22b93767a 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -55,13 +55,13 @@ function drupal_get_content($region = NULL, $delimiter = ' ') { $content = drupal_set_content(); if (isset($region)) { if (isset($content[$region]) && is_array($content[$region])) { - return implode ($delimiter, $content[$region]); + return implode($delimiter, $content[$region]); } } else { foreach (array_keys($content) as $region) { if (is_array($content[$region])) { - $content[$region] = implode ($delimiter, $content[$region]); + $content[$region] = implode($delimiter, $content[$region]); } } return $content; -- cgit v1.2.3