From c5f9c709fd7372eaa301c6f4a4487908cb34d72b Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Sat, 19 May 2001 11:58:37 +0000 Subject: [PATCH] There was an "echo $story->cid;" after the date in $theme->story, which caused date/times for stories to appear like: on Tuesday, 05/15/2001 - 18:393 on Friday, 05/11/2001 - 07:033 ... --- themes/yaroon/yaroon.theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/yaroon/yaroon.theme b/themes/yaroon/yaroon.theme index 47f531b1ff8d..ec58c0610852 100644 --- a/themes/yaroon/yaroon.theme +++ b/themes/yaroon/yaroon.theme @@ -128,7 +128,7 @@ function story($story, $main = 0) { <tr> <td> <a href="index.php?topic=<?php echo $story->tid; ?>"><img src="themes/yaroon/images/<?php echo $img; ?>" border="0" /></a> <b style="font-size: 12pt"><?php echo check_output($story->title); ?></b> - <?php echo strtr(t("by %a on %b"), array("%a" => format_username($story->userid), "%b" => format_date($story->timestamp), "small")); echo $story->cid; ?> + <?php echo strtr(t("by %a on %b"), array("%a" => format_username($story->userid), "%b" => format_date($story->timestamp), "small")); ?> </td> </tr> <tr><td bgcolor="<?php echo $color; ?>"><img src="themes/yaroon/images/pixel.gif" width="1" height="1" alt="" border="0" /></td></tr> -- GitLab