diff options
author | Matthew Somerville <matthew@fury.ukcod.org.uk> | 2011-02-22 14:32:00 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@fury.ukcod.org.uk> | 2011-02-22 14:32:00 +0000 |
commit | f36c08b67deb859423aef7f4c4c8305838f8d076 (patch) | |
tree | bd3562ba4e00056b92033b641d80249125c47bce | |
parent | f1ffda42b62b378814f0c9aa96a8d48778a251dd (diff) |
We want incoming data to be Unicodised.
m--------- | commonlib | 0 | ||||
-rw-r--r-- | perllib/Page.pm | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/commonlib b/commonlib -Subproject 408dc4eda871e89ab97887c822fb21a869b0f89 +Subproject f378416426f35615a78e935776dcefb1ffecc26 diff --git a/perllib/Page.pm b/perllib/Page.pm index 279c5a79a..447d9eda2 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -56,7 +56,7 @@ sub do_fastcgi { try { my $W = new mySociety::WatchUpdate(); - while (my $q = new mySociety::Web()) { + while (my $q = new mySociety::Web(unicode => 1)) { next if $lm && $q->Maybe304($lm); $lastmodified = $lm; microsite($q); |