X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=html%2Fccbs.pm;h=915e9507f1ffa99f24924c8020db2a496eb589b2;hb=63098578f8c09a941e510664a07b3ad484d3ebe3;hp=7d5f90dd0a4abf827367ca7d164ed232f0be6060;hpb=35f6e765d69f966c8b4abc84f25bb0bfa3df9853;p=ccbs diff --git a/html/ccbs.pm b/html/ccbs.pm index 7d5f90d..915e950 100755 --- a/html/ccbs.pm +++ b/html/ccbs.pm @@ -2,13 +2,14 @@ package ccbs; use Template; use CGI; use DBI; +use HTML::Entities; use strict; use warnings; our $ccbs_dbdebug = 0; sub print_header { - print CGI::header(-type=>'text/html; charset=utf-8'); + print CGI::header(-type=>'application/xhtml+xml; charset=utf-8'); } sub print_see_other { my $location = shift; @@ -92,7 +93,7 @@ $SIG{__DIE__} = sub { ccbs::print_header(); ccbs::process_template('error.tmpl', 'Internal Server Error', - { message => $msg }); + { message => HTML::Entities::encode_entities($msg) }); }; 1;