From: Sven Schöling Date: Tue, 4 Jan 2011 10:14:50 +0000 (+0100) Subject: Nicht exportierte constant muss unter strict als Funktion aufgerufen werden. X-Git-Tag: release-2.6.2beta1~4^2~3 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=fd1fb704ee94c12373bb482e1b26dadc256cfd1d;p=kivitendo-erp.git Nicht exportierte constant muss unter strict als Funktion aufgerufen werden. --- diff --git a/SL/Controller/Base.pm b/SL/Controller/Base.pm index c63a8ee56..c79ceecac 100644 --- a/SL/Controller/Base.pm +++ b/SL/Controller/Base.pm @@ -55,7 +55,7 @@ sub render { my $content_type = $options->{type} eq 'js' ? 'text/javascript' : 'text/html'; print $::form->create_http_response(content_type => $content_type, - charset => $::dbcharset || Common::DEFAULT_CHARSET); + charset => $::dbcharset || Common::DEFAULT_CHARSET()); } else { $::form->{title} = $locals{title} if $locals{title};