X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=rt%2Fshare%2Fhtml%2FElements%2FError;h=f02f7be0cfbcd4dd7c1f6ead092d5e0c4abb2b0d;hb=187086c479a09629b7d180eec513fb7657f4e291;hp=5ca18386e90213e85cf0c0100315c37430317247;hpb=919e930aa9279b3c5cd12b593889cd6de79d67bf;p=freeside.git diff --git a/rt/share/html/Elements/Error b/rt/share/html/Elements/Error index 5ca18386e..f02f7be0c 100755 --- a/rt/share/html/Elements/Error +++ b/rt/share/html/Elements/Error @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2018 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -48,7 +48,7 @@ % $m->callback( %ARGS, error => $error ); % unless ($SuppressHeader) { -<& /Elements/Header, Code => $Code, Why => $Why, Title => $Title &> +<& /Elements/Header, Title => $Title &> <& /Elements/Tabs &> % } @@ -60,14 +60,11 @@ <%$Details%> -<%cleanup> -$m->comp('/Elements/Footer'); -$m->abort(); - +<& /Elements/Footer &> +% $m->abort; <%args> $Actions => [] -$Code => undef $Details => '' $Title => loc("RT Error") $Why => loc("the calling component did not specify why"), @@ -75,13 +72,13 @@ $SuppressHeader => 0, <%INIT> -my $error = "WebRT: $Why"; +my $error = $Why; $error .= " ($Details)" if defined $Details && length $Details; $RT::Logger->error( $error ); if ( $session{'REST'} ) { - $r->content_type('text/plain'); + $r->content_type('text/plain; charset=utf-8'); $m->out( "Error: " . $Why . "\n" ); $m->out( $Details . "\n" ) if defined $Details && length $Details; $m->abort();