mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 07:05:56 +00:00
fix article tags/labels not assigning properly on mysql because of the 4byte unicode workaround
This commit is contained in:
@@ -761,7 +761,11 @@
|
||||
// Workaround: 4-byte unicode requires utf8mb4 in MySQL. See https://tt-rss.org/forum/viewtopic.php?f=1&t=3377&p=20077#p20077
|
||||
if (DB_TYPE == "mysql") {
|
||||
foreach ($article as $k => $v) {
|
||||
$article[$k] = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $v);
|
||||
|
||||
// i guess we'll have to take the risk of 4byte unicode labels & tags here
|
||||
if (!is_array($article[$k])) {
|
||||
$article[$k] = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $v);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user