diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-20 09:46:31 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-20 09:46:31 -0400 |
commit | f614bb5bf24ca063ab99994776fab9fc54bea4d9 (patch) | |
tree | ced4edf7b3758021dcc2d06ddfbc8076d66b79cb /actions/showstream.php | |
parent | e70b7d3a6c82358e38a65eade5753b5ba33ab51a (diff) |
add alt to all images
darcs-hash:20080520134631-84dde-249574ec7e16108cf47f3001c2bc726bdc6f8751.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 5e8802cd7..6cd4773ee 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -102,7 +102,7 @@ class ShowstreamAction extends StreamAction { 'class' => 'avatar profile', 'width' => AVATAR_PROFILE_SIZE, 'height' => AVATAR_PROFILE_SIZE, - 'title' => $profile->nickname)); + 'alt' => $profile->nickname)); } if ($profile->fullname) { if ($profile->homepage) { @@ -161,7 +161,8 @@ class ShowstreamAction extends StreamAction { common_element_start('div', 'row'); } - common_element_start('a', array('title' => $subs->fullname || + common_element_start('a', array('title' => ($subs->fullname) ? + $subs->fullname : $subs->nickname, 'href' => $subs->profileurl, 'class' => 'subscription')); @@ -169,7 +170,10 @@ class ShowstreamAction extends StreamAction { common_element('img', array('src' => (($avatar) ? $avatar->url : DEFAULT_MINI_AVATAR), 'width' => AVATAR_MINI_SIZE, 'height' => AVATAR_MINI_SIZE, - 'class' => 'avatar mini')); + 'class' => 'avatar mini', + 'alt' => ($subs->fullname) ? + $subs->fullname : + $subs->nickname)); common_element_end('a'); if ($cnt % SUBSCRIPTIONS_PER_ROW == 0) { |