aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rw-r--r--mod/common.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/mod/common.php b/mod/common.php
index 644009236..c6294f5a2 100644
--- a/mod/common.php
+++ b/mod/common.php
@@ -61,13 +61,15 @@ function common_content(&$a) {
foreach($r as $rr) {
$o .= replace_macros($tpl,array(
- '$url' => $rr['url'],
- '$name' => $rr['name'],
- '$photo' => $rr['photo'],
- '$tags' => ''
- ));
+ '$url' => $rr['url'],
+ '$name' => $rr['name'],
+ '$photo' => $rr['photo'],
+ '$tags' => ''
+ ));
+ }
+
+ $o .= cleardiv();
}
- $o .= cleardiv();
return $o;
}