Skip to content

Commit

Permalink
adding missing alt tag to the status helper
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Jan 4, 2010
1 parent 385cc62 commit 9a730dc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugins/core/views/helpers/status.php
Expand Up @@ -42,7 +42,8 @@ public function status( $status = null )
$image = $this->Html->image(
'core/icons/actions/16/active.png',
$params + array(
'width' => '16px'
'width' => '16px',
'alt' => __( 'On', true )
)
);
break;
Expand All @@ -58,7 +59,8 @@ public function status( $status = null )
$image = $this->Html->image(
'core/icons/actions/16/disabled.png',
$params + array(
'width' => '16px'
'width' => '16px',
'alt' => __( 'Off', true )
)
);
break;
Expand Down

0 comments on commit 9a730dc

Please sign in to comment.