From: Bernd Bleßmann Date: Fri, 9 Nov 2012 09:59:55 +0000 (+0100) Subject: Syntaxfehler (fehlende Klammer) korrigiert. X-Git-Tag: release-3.0.0beta2~10^2~8 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=02d3f01099a54ff9599b82bfcf82d3d776d03043;p=kivitendo-erp.git Syntaxfehler (fehlende Klammer) korrigiert. behebt #2048 --- diff --git a/bin/mozilla/do.pl b/bin/mozilla/do.pl index 570c7c358..c3cb45b96 100644 --- a/bin/mozilla/do.pl +++ b/bin/mozilla/do.pl @@ -305,7 +305,7 @@ sub form_header { # emulate click for resubmitting actions $dispatch_to_popup .= "document.do.${_}.click(); " for grep { /^action_/ } keys %$form; $dispatch_to_popup .= "document.do.submit();"; - $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup)"); + $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup})"); } my $follow_up_vc = $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };