update_rss_feed: limit maximum length of tsvector data because of pgsql limitations
This commit is contained in:
parent
0cd4a88dc2
commit
6e6c3a878d
1 changed files with 1 additions and 1 deletions
|
@ -1008,7 +1008,7 @@ class RSSUtils {
|
|||
|
||||
if (DB_TYPE == "pgsql") {
|
||||
$params[":ts_lang"] = $feed_language;
|
||||
$params[":ts_content"] = mb_substr(strip_tags($entry_title . " " . $entry_content), 0, 1000000);
|
||||
$params[":ts_content"] = mb_substr(strip_tags($entry_title . " " . $entry_content), 0, 900000);
|
||||
}
|
||||
|
||||
$sth->execute($params);
|
||||
|
|
Loading…
Reference in a new issue