MV_HTML4_COMPLIANT — output HTML4-compliant HTML code
Example: Enabling the MV_HTML4_COMPLIANT feature
Add the following to interchange.cfg:
Variable MV_HTML4_COMPLIANT 1
Currently, this variable only affects the "joiner" element when the links are created. & is used instead of plain & when this variable is set.
Interchange 5.7.0:
Source: lib/Vend/Config.pm (rev. 2.239 from Sat Oct 11 00:01:22 2008)
Line 3662 (context shows lines 3652-3666 in parse_url_sep_char():3640)
"%s character value '%s' longer than one character.",
$var,
$val,
);
}
elsif($val !~ /[&;:]/) {
config_warn("%s character value '%s' not a recommended value.", $var, $val);
}
if($val eq '&') {
$Global::UrlJoiner = $Global::Variable->{MV_HTML4_COMPLIANT} ? '&' : '&';
$Global::UrlSplittor = qr/\&/;
}
else {
$Global::UrlJoiner = $val;