another replacement of string{x} with string[x]

pull/325/head
David Goodwin 4 years ago
parent 55661a80c6
commit c0bd763c53

@ -803,7 +803,7 @@ function encode_header($string, $default_charset = "utf-8") {
$cur_l = 0;
$ret = '';
} else {
$ret .= $string{$i};
$ret .= $string[$i];
}
}
}

Loading…
Cancel
Save