From 6e57bbebc81e0927f15ca82f2caf2d9323136ac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C4=8Dius?= Date: Wed, 14 Nov 2007 20:01:05 +0000 Subject: [PATCH] Fix #472 (charset not selected correctly from translation file) svn path=/trunk/boinc/; revision=14203 --- html/inc/util.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/inc/util.inc b/html/inc/util.inc index 6dadb75f1d..081e96ffd7 100644 --- a/html/inc/util.inc +++ b/html/inc/util.inc @@ -113,7 +113,7 @@ function page_head($title, $java_onload=null, $title_plain=null, $prefix="") { $rsslink = URL_BASE . "/rss_main.php"; if (defined("CHARSET")) { - header("Content-type: text/html; charset=".tra(CHARSET)); + header("Content-type: text/html; charset=".tra("CHARSET")); } echo "\n";