what happened to the photos page vcard?

This commit is contained in:
friendica 2012-11-09 00:21:16 -08:00
parent f71db67a36
commit b01ca0e345
1 changed files with 2 additions and 1 deletions

View File

@ -27,12 +27,13 @@ function photos_init(&$a) {
if(! count($r))
return;
$a->data['user'] = $r[0];
$o .= '<div class="vcard">';
$o .= '<div class="fn">' . $a->data['user']['username'] . '</div>';
$o .= '<div id="profile-photo-wrapper"><img class="photo" style="width: 175px; height: 175px;" src="' . $a->get_cached_avatar_image($a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg') . '" alt="' . $a->data['user']['username'] . '" /></div>';
$o .= '</div>';
$a->data['user'] = $r[0];
$sql_extra = permissions_sql($a->data['user']['uid']);