diff options
author | Anika Henke <anika@selfthinker.org> | 2008-11-21 21:33:11 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2008-11-21 21:33:11 +0100 |
commit | 5adfc5af7520737faaffab2ac676d724c58e5a52 (patch) | |
tree | ebfb3e23e9d24dd0cfaa7ae22422f213664387fd /inc | |
parent | 25b2a98c678f2fdf4d665b0bf28b1be559032414 (diff) | |
download | rpg-5adfc5af7520737faaffab2ac676d724c58e5a52.tar.gz rpg-5adfc5af7520737faaffab2ac676d724c58e5a52.tar.bz2 |
yfixed typo that caused screwed up charset in export_raw
darcs-hash:20081121203311-f7d6d-5cf707afd1c1c4a0d0efc664855cda65233163a2.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/actions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/actions.php b/inc/actions.php index 735179968..8da6c47cc 100644 --- a/inc/actions.php +++ b/inc/actions.php @@ -444,7 +444,7 @@ function act_export($act){ $mode = substr($act,7); switch($mode) { case 'raw': - $headers['Content-Type'] = 'text/plain; charse=utf-8'; + $headers['Content-Type'] = 'text/plain; charset=utf-8'; $output = rawWiki($ID,$REV); break; case 'xhtml': |