ucfirst the name as it comes back from i18n in our Form::Cancel control

This commit is contained in:
Scott Walters 2013-09-26 19:34:40 -05:00
parent 15e71bf39b
commit b8923426e2

View file

@ -55,7 +55,7 @@ sub new {
};
$package->SUPER::new( $session,
value => $i18n->get('cancel'),
value => ucfirst( $i18n->get('cancel') ),
extras => qq{onclick="javascript: $cancelJS" class="backwardButton"},
@_,
);