X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FLayout.pm;h=d5d0988f3e1ac6e480f29a630a2000151cd92279;hb=a581d5bd98f0651b7955adccda1ef73c9e39708d;hp=98c012cbccce0c026be419c60b2a5e6019f4a9de;hpb=2b4d64f05414ddea3b4f2d1062fdb18ebae6acf5;p=kivitendo-erp.git 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 }); } }