diff options
Diffstat (limited to 'themes/goofy')
-rw-r--r-- | themes/goofy/goofy.theme | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme index 01ac5d5cd..6793e2c15 100644 --- a/themes/goofy/goofy.theme +++ b/themes/goofy/goofy.theme @@ -91,7 +91,7 @@ function story($story, $reply = 0) { - echo "\n<!-- story: \"$story->subject\" -->\n"; + echo "\n<!-- story: \"$story->title\" -->\n"; ?> <table border="0" cellspacing="0" cellpadding="0" width="100%"> @@ -102,7 +102,7 @@ </tr> <tr> <td class="orl"><img src="themes/goofy/images/null.gif" alt=""></td> - <td class="orcnt" width="100%" valign="top" colspan="2"><?php echo check_output($story->subject); ?></td> + <td class="orcnt" width="100%" valign="top" colspan="2"><?php echo check_output($story->title); ?></td> <td class="orr"><img src="themes/goofy/images/null.gif" alt=""></td> </tr> <tr> @@ -118,7 +118,7 @@ <tr> <td class="lgl"><img src="themes/goofy/images/null.gif" alt=""></td> <td class="lgcnt"><small><?php echo strtr(t("$how by %a on %b"), array("%a" => format_username($story->userid), "%b" => format_date($story->timestamp, "large"))); ?></small></td> - <td class="lgcnt" nowrap><div align="right"><?php echo "<A HREF=\"search.php?category=". urlencode($story->section) ."\">$story->section</A>"; ?></div></td> + <td class="lgcnt" nowrap><div align="right"><?php echo "<A HREF=\"search.php?category=". urlencode($story->section) ."\">". check_output($story->section) ."</A>"; ?></div></td> <td class="lgr"><img src="themes/goofy/images/null.gif" alt=""></td> </tr> <tr> @@ -126,8 +126,6 @@ <td class="lgcnt" width="100%" colspan="2"><hr color="#404040" size="1"> <?php echo check_output($story->abstract, 1) ."<br><br>"; - if ($story->updates) - echo t("Editor's note by <A HREF=\"account.php?op=userinfo&uname=$story->editor\">$story->editor</A>") .":". check_output($story->updates, 1) ."<br><br>"; if ($reply) echo check_output($story->article, 1); ?> |