diff options
author | friendica <info@friendica.com> | 2013-02-13 17:39:14 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-13 17:39:14 -0800 |
commit | ca08f13683bce78a76d40247e1fcd3f166eeba8b (patch) | |
tree | 0a4b4aa286022c677eff0074514d1cf8773e87d5 /mod | |
parent | cd14b0665e8eb2c691cc4a97b792a2ca70d0751c (diff) | |
download | volse-hubzilla-ca08f13683bce78a76d40247e1fcd3f166eeba8b.tar.gz volse-hubzilla-ca08f13683bce78a76d40247e1fcd3f166eeba8b.tar.bz2 volse-hubzilla-ca08f13683bce78a76d40247e1fcd3f166eeba8b.zip |
Sigh... I need another cuppa
Diffstat (limited to 'mod')
-rw-r--r-- | mod/common.php | 14 |
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; } |