Sigh... I need another cuppa

This commit is contained in:
friendica 2013-02-13 17:39:14 -08:00
parent cd14b0665e
commit ca08f13683

View File

@ -61,13 +61,15 @@ function common_content(&$a) {
foreach($r as $rr) { foreach($r as $rr) {
$o .= replace_macros($tpl,array( $o .= replace_macros($tpl,array(
'$url' => $rr['url'], '$url' => $rr['url'],
'$name' => $rr['name'], '$name' => $rr['name'],
'$photo' => $rr['photo'], '$photo' => $rr['photo'],
'$tags' => '' '$tags' => ''
)); ));
}
$o .= cleardiv();
} }
$o .= cleardiv();
return $o; return $o;
} }