diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-03-31 15:11:21 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-03-31 15:11:21 +0000 |
commit | e6886e28eebafec41decef0fc8b244a346e1b430 (patch) | |
tree | d76650a6a15be108360de03429347cb39686e122 | |
parent | d1a07a2e8f21e402c85799215f37bd7f3cb685f1 (diff) | |
download | brdo-e6886e28eebafec41decef0fc8b244a346e1b430.tar.gz brdo-e6886e28eebafec41decef0fc8b244a346e1b430.tar.bz2 |
Fixed bug:
"na" appeared when a story didn't have "read more"
-rw-r--r-- | themes/goofy/goofy.theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 37759e56b..327f81b1e 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -127,7 +127,7 @@ <?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 |