From a0962db6fe12ea49703dde68f37985fdba98da33 Mon Sep 17 00:00:00 2001 From: mxbeaulieu Date: Thu, 5 Mar 2015 14:00:49 -0500 Subject: [PATCH] Added "submit" in the list of input types. http://bugs.koha-community.org/show_bug.cgi?id=13794 --- misc/translator/tmpl_process3.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/translator/tmpl_process3.pl b/misc/translator/tmpl_process3.pl index c9dfa4e..ef72b5e 100755 --- a/misc/translator/tmpl_process3.pl +++ b/misc/translator/tmpl_process3.pl @@ -64,7 +64,7 @@ sub text_replace_tag ($$) { if ($attr->{$a}) { next if $a eq 'label' && $tag ne 'optgroup'; next if $a eq 'content' && $tag ne 'meta'; - my $isValidType = ref $attr->{'type'} && $attr->{'type'}->[1] =~ /^(?:checkbox|hidden|radio|text)$/; + my $isValidType = ref $attr->{'type'} && $attr->{'type'}->[1] =~ /^(?:checkbox|hidden|radio|text|submit)$/; next if $a eq 'value' && !($tag eq 'input' && $isValidType); my($key, $val, $val_orig, $order) = @{$attr->{$a}}; #FIXME if ($val =~ /\S/s) { -- 1.7.9.5