From b3d9cb739b93ce5f877ad62e476713976236be53 Mon Sep 17 00:00:00 2001 From: Thomas BrĂ¼derli Date: Tue, 15 Jan 2008 09:25:24 +0000 Subject: Support other charsets than ISO Latin --- itjs.class | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'itjs.class') diff --git a/itjs.class b/itjs.class index 73b2b5f..8482228 100644 --- a/itjs.class +++ b/itjs.class @@ -27,10 +27,10 @@ class itjs /** * Send HTTP headers (content-type) to transmit javascript code */ -function send_headers() +function send_headers($charset = 'iso-8859-1') { if (!preg_match('/Opera/', $_SERVER['HTTP_USER_AGENT']) && !$_REQUEST['itjs_iframe']) # text/plain breaks Opera 8.51/Linux and IFrame fallback - header('Content-Type: text/plain; charset=iso-8859-1'); # Berni reported some Firewalls to require this + header("Content-Type: text/plain; charset=$charset"); # Berni reported some Firewalls to require this header('Expires: ' . gmdate('D, d M Y H:i:s', time()+10) . ' GMT'); # prevent broken data on IE reloads } -- cgit v1.2.3