X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/2b4d64f05414ddea3b4f2d1062fdb18ebae6acf5..7647d46:/SL/Controller/Layout.pm diff --git a/SL/Controller/Layout.pm b/SL/Controller/Layout.pm index 98c012cbc..d5d0988f3 100644 --- a/SL/Controller/Layout.pm +++ b/SL/Controller/Layout.pm @@ -3,7 +3,7 @@ package SL::Controller::Layout; use strict; use parent qw(SL::Controller::Base); -use JSON (); +use SL::JSON (); sub action_empty { my ($self) = @_; @@ -20,7 +20,7 @@ sub action_empty { stylesheets_inline => [ $::request->{layout}->stylesheets_inline ], }; - $self->render(\ JSON::to_json($layout), { type => 'js', raw => 1 }); + $self->render(\ SL::JSON::to_json($layout), { type => 'json', process => 0 }); } }