force article content/etc to string when updating to avoid failing null constraint check

This commit is contained in:
Andrew Dolgov 2017-12-03 13:32:24 +03:00
parent 72a411d314
commit 93e70e36c2
1 changed files with 5 additions and 5 deletions

View File

@ -879,14 +879,14 @@ class RSSUtils {
$entry_guid_hashed, $entry_guid_hashed,
$entry_link, $entry_link,
$entry_timestamp_fmt, $entry_timestamp_fmt,
$entry_content, "$entry_content",
$entry_current_hash, $entry_current_hash,
$date_feed_processed, $date_feed_processed,
$entry_comments, $entry_comments,
(int)$num_comments, (int)$num_comments,
$entry_plugin_data, $entry_plugin_data,
$entry_language, "$entry_language",
$entry_author]); "$entry_author"]);
} }
@ -998,12 +998,12 @@ class RSSUtils {
WHERE id = :id"); WHERE id = :id");
$sth->execute([":title" => $entry_title, $sth->execute([":title" => $entry_title,
":content" => $entry_content, ":content" => "$entry_content",
":content_hash" => $entry_current_hash, ":content_hash" => $entry_current_hash,
":updated" => $entry_timestamp_fmt, ":updated" => $entry_timestamp_fmt,
":num_comments" => (int)$num_comments, ":num_comments" => (int)$num_comments,
":plugin_data" => $entry_plugin_data, ":plugin_data" => $entry_plugin_data,
":author" => $entry_author, ":author" => "$entry_author",
":lang" => $entry_language, ":lang" => $entry_language,
":id" => $ref_id]); ":id" => $ref_id]);