Mercurial > pub > Impl
comparison Lib/IMPL/Web/CGIApplication.pm @ 328:63709a4e6da0
Security framework refactoring
author | cin |
---|---|
date | Mon, 03 Jun 2013 03:28:01 +0400 |
parents | 546957c50a36 |
children |
comparison
equal
deleted
inserted
replaced
327:6cb0d4d325d7 | 328:63709a4e6da0 |
---|---|
19 sub Run { | 19 sub Run { |
20 my ($this) = @_; | 20 my ($this) = @_; |
21 | 21 |
22 my $query = CGIWrapper->new(); | 22 my $query = CGIWrapper->new(); |
23 | 23 |
24 $query->charset($this->requestCharset) if $this->requestCharset; | 24 $query->charset('utf-8'); |
25 | 25 |
26 $this->ProcessRequest($query); | 26 $this->ProcessRequest($query); |
27 } | 27 } |
28 | 28 |
29 1; | 29 1; |