mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-01-19 01:24:05 +01:00
fix posting of ı and İ, possibly a bit more xD
This commit is contained in:
parent
1fb362a7c0
commit
2d34274672
@ -1273,7 +1273,9 @@ function make_comment_hex($str) {
|
|||||||
if (function_exists('iconv')) {
|
if (function_exists('iconv')) {
|
||||||
// remove diacritics and other noise
|
// remove diacritics and other noise
|
||||||
// FIXME: this removes cyrillic entirely
|
// FIXME: this removes cyrillic entirely
|
||||||
$str = iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $str);
|
$oldstr = $str;
|
||||||
|
$str = @iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $str);
|
||||||
|
if (!$str) $str = $oldstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
$str = strtolower($str);
|
$str = strtolower($str);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user