feeds: remove sql_bool_to_bool()
This commit is contained in:
parent
b6f3562d1e
commit
64312bfd71
|
@ -691,7 +691,8 @@ class Feeds extends Handler_Protected {
|
|||
$tmp_content .= "<div class=\"cdmIntermediate\">";
|
||||
|
||||
$always_display_enclosures = $line["always_display_enclosures"];
|
||||
$tmp_content .= Article::format_article_enclosures($id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
|
||||
$tmp_content .= Article::format_article_enclosures($id, $always_display_enclosures,
|
||||
$line["content"], $line["hide_images"]);
|
||||
|
||||
$tmp_content .= "</div>"; // cdmIntermediate
|
||||
|
||||
|
|
Loading…
Reference in New Issue