summaryrefslogtreecommitdiff
path: root/modules/statistics.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-07-30 12:52:54 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-07-30 12:52:54 +0000
commitc81bbf4aa18dc3b16caab8fd23dec0311939a798 (patch)
tree00702f3e32827a226cba042e145b2a28f52fa70f /modules/statistics.module
parent6a988f92d4dd855fb26fd67c5225c67849efc04f (diff)
downloadbrdo-c81bbf4aa18dc3b16caab8fd23dec0311939a798.tar.gz
brdo-c81bbf4aa18dc3b16caab8fd23dec0311939a798.tar.bz2
- #24673: Fix deprecated usage of implode
Diffstat (limited to 'modules/statistics.module')
-rw-r--r--modules/statistics.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/statistics.module b/modules/statistics.module
index b74407f0c..4f10af1c9 100644
--- a/modules/statistics.module
+++ b/modules/statistics.module
@@ -455,7 +455,7 @@ function statistics_block($op = 'list', $delta = 0, $edit = array()) {
}
if (count($content)) {
- $block['content'] = implode($content, '<br />');
+ $block['content'] = implode('<br />', $content);
$block['subject'] = t('Popular content');
return $block;
}