X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FError;h=d747c4e5b1b28d4d5bd5b2d3b67b02fbea73727c;hb=ed1f84b4e8f626245995ecda5afcf83092c153b2;hp=50f3b775c519b490483815cb22cbf0e0b8b88b8b;hpb=43a06151e47d2c59b833cbd8c26d97865ee850b6;p=freeside.git diff --git a/rt/share/html/Elements/Error b/rt/share/html/Elements/Error index 50f3b775c..d747c4e5b 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-2014 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -52,6 +52,8 @@ <& /Elements/Tabs &> % } +<& /Elements/ListActions, actions => $Actions &> +
<%$Why%>
@@ -64,6 +66,7 @@ $m->abort(); <%args> +$Actions => [] $Code => undef $Details => '' $Title => loc("RT Error") @@ -75,13 +78,9 @@ $SuppressHeader => 0, my $error = "WebRT: $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' ) { +if ( $session{'REST'} ) { $r->content_type('text/plain'); $m->out( "Error: " . $Why . "\n" ); $m->out( $Details . "\n" ) if defined $Details && length $Details;