From: Marcus Ramberg Date: Thu, 16 Sep 2004 18:57:06 +0000 (+0000) Subject: Fixed documentation bug. X-Git-Tag: 2.10~174 X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=0b605838079e58fd834c43fcf1776fb401b0751d;p=maypole.git Fixed documentation bug. git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@188 48953598-375a-da11-a14b-00016c27c3ee --- diff --git a/lib/Maypole/View/Base.pm b/lib/Maypole/View/Base.pm index 668b2c4..51c2cb6 100644 --- a/lib/Maypole/View/Base.pm +++ b/lib/Maypole/View/Base.pm @@ -60,6 +60,7 @@ sub process { my $status = $self->template($r); return $self->error($r) if $status != OK; $r->{content_type} ||= "text/html"; + $r->{document_encoding} ||= "utf-8"; return OK; }