diff options
author | Devlon Duthie <duthied@gmail.com> | 2011-09-27 00:29:34 -0500 |
---|---|---|
committer | Devlon Duthie <duthied@gmail.com> | 2011-09-27 00:29:34 -0500 |
commit | 78c3210f6afac231c199e93caf5c022083049192 (patch) | |
tree | 98226a7cf2bf026193d953d6dabedb8eea607ef8 /mod/photos.php | |
parent | ec16525c860c089c354dc22acc30996ca8bf572f (diff) | |
download | volse-hubzilla-78c3210f6afac231c199e93caf5c022083049192.tar.gz volse-hubzilla-78c3210f6afac231c199e93caf5c022083049192.tar.bz2 volse-hubzilla-78c3210f6afac231c199e93caf5c022083049192.zip |
fixed a bug I introduced when working on the testbubble theme - user's photo widget header div wasn't closed correctly
+ some opera-friendly style changes
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/photos.php b/mod/photos.php index cb7df15cc..90d51000e 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -34,7 +34,7 @@ function photos_init(&$a) { $a->data['albums'] = $albums; $o .= '<div class="vcard">'; - $o .= '<div class="fn">' . $a->data['user']['username'] . '</h4>'; + $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_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg" alt="' . $a->data['user']['username'] . '" /></div>'; $o .= '</div>'; |