aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-13 17:39:14 -0800
committerfriendica <info@friendica.com>2013-02-13 17:39:14 -0800
commitca08f13683bce78a76d40247e1fcd3f166eeba8b (patch)
tree0a4b4aa286022c677eff0074514d1cf8773e87d5
parentcd14b0665e8eb2c691cc4a97b792a2ca70d0751c (diff)
downloadvolse-hubzilla-ca08f13683bce78a76d40247e1fcd3f166eeba8b.tar.gz
volse-hubzilla-ca08f13683bce78a76d40247e1fcd3f166eeba8b.tar.bz2
volse-hubzilla-ca08f13683bce78a76d40247e1fcd3f166eeba8b.zip
Sigh... I need another cuppa
-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;
}