diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2008-11-14 13:04:37 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2008-11-14 13:04:37 +0100 |
| commit | 03208748b614231d1abbfc3b4b7361d719ae36b4 (patch) | |
| tree | eb3a9587eceb2a18d471126464552664419bd8e7 | |
| parent | 889ec95a964c1d8ceeceb24399746707fee3c407 (diff) | |
set content-type header manually to utf-8
| -rw-r--r-- | prefs.php | 4 | ||||
| -rw-r--r-- | tt-rss.php | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -15,7 +15,9 @@ $dt_add = get_script_dt_add(); no_cache_incantation(); - + + header('Content-Type: text/html; charset=utf-8'); + ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> diff --git a/tt-rss.php b/tt-rss.php index 6c4430398..ee22bea89 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -16,6 +16,8 @@ no_cache_incantation(); + header('Content-Type: text/html; charset=utf-8'); + ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |