X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FError;h=63b81b11fe382af90c7b678cfe09fd08e70971b6;hp=50f3b775c519b490483815cb22cbf0e0b8b88b8b;hb=7322f2afedcc2f427e997d1535a503613a83f088;hpb=43a06151e47d2c59b833cbd8c26d97865ee850b6 diff --git a/rt/share/html/Elements/Error b/rt/share/html/Elements/Error index 50f3b775c..63b81b11f 100755 --- a/rt/share/html/Elements/Error +++ b/rt/share/html/Elements/Error @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -48,23 +48,23 @@ % $m->callback( %ARGS, error => $error ); % unless ($SuppressHeader) { -<& /Elements/Header, Code => $Code, Why => $Why, Title => $Title &> +<& /Elements/Header, Title => $Title &> <& /Elements/Tabs &> % } +<& /Elements/ListActions, actions => $Actions &> +
<%$Why%>
<%$Details%>
-<%cleanup> -$m->comp('/Elements/Footer'); -$m->abort(); - +<& /Elements/Footer &> +% $m->abort; <%args> -$Code => undef +$Actions => [] $Details => '' $Title => loc("RT Error") $Why => loc("the calling component did not specify why"), @@ -72,17 +72,13 @@ $SuppressHeader => 0, <%INIT> -my $error = "WebRT: $Why"; +my $error = $Why; $error .= " ($Details)" if defined $Details && length $Details; -# TODO: Log::Dispatch isn't UTF-8 safe. Autrijus needs to talk to dave rolsky about getting this fixed -use Encode (); -Encode::_utf8_off($error); - -$RT::Logger->error($error); +$RT::Logger->error( $error ); -if ( defined $session{'SessionType'} && $session{'SessionType'} eq 'REST' ) { - $r->content_type('text/plain'); +if ( $session{'REST'} ) { + $r->content_type('text/plain; charset=utf-8'); $m->out( "Error: " . $Why . "\n" ); $m->out( $Details . "\n" ) if defined $Details && length $Details; $m->abort();