diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-12-17 10:35:59 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-12-17 10:35:59 +0000 |
commit | db42745522a2838112f827bee0201e0ada23cb39 (patch) | |
tree | cbd0762cb760b054402ff03eaf54509bfea95303 | |
parent | d5581d94cb7afadb1d4e421f5dfa26536fc891b2 (diff) | |
download | brdo-db42745522a2838112f827bee0201e0ada23cb39.tar.gz brdo-db42745522a2838112f827bee0201e0ada23cb39.tar.bz2 |
- Code style
-rw-r--r-- | includes/common.inc | 4 |
1 files changed, 2 insertions, 2 deletions
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; |