From: Andy Grundman Date: Mon, 26 Feb 2007 18:14:35 +0000 (+0000) Subject: Serve proper HTML for the redirect message X-Git-Tag: 5.7099_04~238 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=e422816ee11aca47515850b63d599e8e003ca7d5;hp=72f87c4bec018bc59ef69db7c55b9a8d68bb503d Serve proper HTML for the redirect message --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index ab4c3f0..04d8d82 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -1399,7 +1399,7 @@ sub finalize_headers { if ( !$c->response->body ) { # Add a default body if none is already present $c->response->body( - "

This item has moved here.

" + qq{

This item has moved here.

} ); } }