X-Git-Url: https://git.jankratochvil.net/?a=blobdiff_plain;f=common.php;fp=common.php;h=528f671a3041bc36603fc058c0a2754e413777fe;hb=88c174ee25860b905efe6bfcda87e6b88363deaa;hp=655c7edcf7405bda082a7463072757b850819f2c;hpb=20d67ec0efecc86d89b9afb33435825748ecb79f;p=www.energie.vellum.cz.git diff --git a/common.php b/common.php index 655c7ed..528f671 100644 --- a/common.php +++ b/common.php @@ -565,6 +565,21 @@ function input_text($name,$size,$default_value="",$addons="") return($r); } +function form_charset() +{ + // CSacek-2.1.9+ required (mod_czech support dropped!) + // We MUST have input coded in "iso-8859-2" as we use + // "csacekRecodeInput Off", CSacek otherwise tries to recode input but CSacek + // _cannot_ know the encoding used by the client (moreover it IGNORES POST + // data MIME type, even if provided by Lynx 2.8.4dev.11, Mozilla 1.0.0 + // doesn't provide anything). + // "iso-8859-2" should be replaced by $HTTP_SERVER_VARS["HTTP_X_CLIENT_CHARSET"] + // and "csacekRecodeInput On"(default) when CSacek fixes support of "utf-8" + // input-decoding, details in my mail <20020620134930.GA18761@short.ucw.cz>. + + return('enctype="application/x-www-form-urlencoded" accept-charset="iso-8859-2"'); +} + function print_form_radkova_inzerce($readonly,$total,$submit_name,$submit_value) { global $have_js,$text,$doklad; @@ -572,7 +587,7 @@ function print_form_radkova_inzerce($readonly,$total,$submit_name,$submit_value) $addons=(!$readonly ? "" : " readonly=\"readonly\""); ?>
-
+>
@@ -696,18 +711,15 @@ function no_cache() function heading($title=false) { - global $HTTP_SERVER_VARS,$msie_major,$mozilla_major,$title_tail,$head_css,$have_css,$head,$heading_done,$title_prefix,$force_charset; + global $msie_major,$mozilla_major,$title_tail,$head_css,$have_css,$head,$heading_done,$title_prefix,$force_charset; if (isset($heading_done)) return; $heading_done=true; - if (isset($force_charset)) - $client_charset=$force_charset; - else - $client_charset=(!isset($HTTP_SERVER_VARS["CLIENT_CHARSET"]) ? "iso-8859-2" : $HTTP_SERVER_VARS["CLIENT_CHARSET"]); - // When "CLIENT_CHARSET" is set we MUST NOT explicitely specify our "charset" - header("Content-type: text/html".(isset($HTTP_SERVER_VARS["CLIENT_CHARSET"]) ? "" : "; charset=$client_charset")); + // $HTTP_SERVER_VARS["CLIENT_CHARSET"] ignored (mod_czech support dropped!) + $client_charset=(isset($force_charset) ? $force_charset : "iso-8859-2"); + header("Content-type: text/html; charset=$client_charset"); header("Content-Style-Type: text/css"); if (!isset($msie_major) || $msie_major>=4) { print(''."\n");
Text inzerátu