diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-03-31 15:29:30 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-03-31 15:29:30 +0000 |
commit | 025dcfb44d26be4d97baa45b5d6e7d4e54c57752 (patch) | |
tree | 4c37acaf61fac3a2c466a2fee20fe355482af06d | |
parent | e6886e28eebafec41decef0fc8b244a346e1b430 (diff) | |
download | brdo-025dcfb44d26be4d97baa45b5d6e7d4e54c57752.tar.gz brdo-025dcfb44d26be4d97baa45b5d6e7d4e54c57752.tar.bz2 |
Fixed bug with $story->body
-rw-r--r-- | themes/goofy/goofy.theme | 11 | ||||
-rw-r--r-- | themes/unconed/unconed.theme | 2 |
2 files changed, 3 insertions, 10 deletions
diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 327f81b1e..6f124363e 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -125,9 +125,9 @@ <td class="lgl"><img src="themes/goofy/images/null.gif" alt=""></td> <td class="lgcnt" width="100%" colspan="2"><hr color="#404040" size="1"> <?php - echo check_output($story->abstract, 1) ."<br><br>"; + echo check_output($story->abstract, 1) . "<br>"; if ($reply) - echo $story->article?check_output($story->article, 1):""; + echo $story->body?"<br>" . check_output($story->body, 1); ?> <hr color="#404040" size="1"><div align="right"> <?php @@ -145,13 +145,6 @@ </tr> </table><br> <?php -/* - if (!$reply) - echo theme_morelink($this, $story); - else - echo $reply; -*/ - } // close story function function controls() { diff --git a/themes/unconed/unconed.theme b/themes/unconed/unconed.theme index dd31c40bf..29286d4d6 100644 --- a/themes/unconed/unconed.theme +++ b/themes/unconed/unconed.theme @@ -104,7 +104,7 @@ <?php echo "<P>". check_output($story->abstract, 1) ."</P>"; if ($reply) - if ($story->article) print "<P>". check_output($story->article, 1) ."</P>\n"; + if ($story->body) print "<P>". check_output($story->body, 1) ."</P>\n"; ?> </TD> </TR> |