summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-03 13:32:24 +0300
committerAndrew Dolgov <[email protected]>2017-12-03 13:32:24 +0300
commit93e70e36c2420e62fdaf229e054aadd7bc981744 (patch)
tree681758e621cf21cb08d6e38e284e468fdfbed2a4 /classes
parent72a411d314533773aa212886847d8cec543aae0c (diff)
force article content/etc to string when updating to avoid failing null constraint check
Diffstat (limited to 'classes')
-rw-r--r--classes/rssutils.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/classes/rssutils.php b/classes/rssutils.php
index 98f494d70..b6a00d309 100644
--- a/classes/rssutils.php
+++ b/classes/rssutils.php
@@ -879,14 +879,14 @@ class RSSUtils {
$entry_guid_hashed,
$entry_link,
$entry_timestamp_fmt,
- $entry_content,
+ "$entry_content",
$entry_current_hash,
$date_feed_processed,
$entry_comments,
(int)$num_comments,
$entry_plugin_data,
- $entry_language,
- $entry_author]);
+ "$entry_language",
+ "$entry_author"]);
}
@@ -998,12 +998,12 @@ class RSSUtils {
WHERE id = :id");
$sth->execute([":title" => $entry_title,
- ":content" => $entry_content,
+ ":content" => "$entry_content",
":content_hash" => $entry_current_hash,
":updated" => $entry_timestamp_fmt,
":num_comments" => (int)$num_comments,
":plugin_data" => $entry_plugin_data,
- ":author" => $entry_author,
+ ":author" => "$entry_author",
":lang" => $entry_language,
":id" => $ref_id]);