Skip to content
Snippets Groups Projects
Commit e6886e28 authored by Steven Wittens's avatar Steven Wittens
Browse files

Fixed bug:

"na" appeared when a story didn't have "read more"
parent d1a07a2e
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -127,7 +127,7 @@ function story($story, $reply = 0) {
<?php
echo check_output($story->abstract, 1) ."<br><br>";
if ($reply)
echo check_output($story->article, 1);
echo $story->article?check_output($story->article, 1):"";
?>
<hr color="#404040" size="1"><div align="right">
<?php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment