Removed "; charset=iso-8859-2" as in .htaccess is "SourceCharset iso-8859-2"
authorshort <>
Sun, 30 Sep 2001 20:49:19 +0000 (20:49 +0000)
committershort <>
Sun, 30 Sep 2001 20:49:19 +0000 (20:49 +0000)
 - such explicit charset specification collided with mod_czech!

common.php
objednavky.php

index 016e546..c29986a 100644 (file)
@@ -379,7 +379,7 @@ function heading($title=false)
 {
        global $msie_major,$mozilla_major,$title_tail,$head_css,$have_css,$head;
 
-       header("Content-type: text/html; charset=iso-8859-2");
+       header("Content-type: text/html");
        if (!isset($msie_major) || $msie_major>=4)
                print('<?xml version="1.0" encoding="iso-8859-2"?>'."\n");
 ?>
index 46f5db7..46a3591 100644 (file)
@@ -3,7 +3,7 @@
        include("common.php");
 
        no_cache();
-       header("Content-type: text/plain; charset=iso-8859-2");
+       header("Content-type: text/plain");
 
        $result=db_query("select varsym,direct,contents from $tb_objednavka where contents is not null order by varsym");
        while ($row=mysql_fetch_array($result)) {