From b8923426e2624693cf7b2f0cf3aa9f6e6138be89 Mon Sep 17 00:00:00 2001 From: Scott Walters Date: Thu, 26 Sep 2013 19:34:40 -0500 Subject: [PATCH] ucfirst the name as it comes back from i18n in our Form::Cancel control --- lib/WebGUI/Form/Cancel.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Form/Cancel.pm b/lib/WebGUI/Form/Cancel.pm index 3bf764817..db61b5751 100644 --- a/lib/WebGUI/Form/Cancel.pm +++ b/lib/WebGUI/Form/Cancel.pm @@ -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"}, @_, );