Skip to content

Commit

Permalink
Merge pull request #27 from rainboxx/patch-1
Browse files Browse the repository at this point in the history
Missing localization in HTML::FormHandler::Widget::Field::ButtonTag
  • Loading branch information
gshank committed Feb 27, 2012
2 parents 35ce602 + 7a8872c commit f84b0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/HTML/FormHandler/Widget/Field/ButtonTag.pm
Expand Up @@ -14,7 +14,7 @@ sub render {
. $self->html_name . '" id="' . $self->id . '"';
$output .= process_attrs($self->element_attributes($result));
$output .= '/>';
$output .= $self->value;
$output .= $self->_localize($self->value);
$output .= "</button>";

return $self->wrap_field( $result, $output );
Expand Down

0 comments on commit f84b0f7

Please sign in to comment.