Skip to content
Snippets Groups Projects
Commit c5f9c709 authored by Steven Wittens's avatar Steven Wittens
Browse files

There was an "echo $story->cid;" after the date in $theme->story, which caused...

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
...
parent e7c727a6
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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>&nbsp;<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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment