diff options
-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> |