diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-10-22 18:22:22 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-10-22 18:22:22 +0000 |
commit | 0adaec35bdcb227700164e1425cce4ab83cfcf61 (patch) | |
tree | 799021d5688fcc4593867dfd0f396647bc2094e5 | |
parent | f4315766fe31d57cd3a709d666d363bcf933febe (diff) | |
download | brdo-0adaec35bdcb227700164e1425cce4ab83cfcf61.tar.gz brdo-0adaec35bdcb227700164e1425cce4ab83cfcf61.tar.bz2 |
- Patch #324080 by winterheart: missing </td>-tag.
-rw-r--r-- | modules/forum/forum-topic-list.tpl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum-topic-list.tpl.php b/modules/forum/forum-topic-list.tpl.php index 6613ad7d5..08d9ec56b 100644 --- a/modules/forum/forum-topic-list.tpl.php +++ b/modules/forum/forum-topic-list.tpl.php @@ -52,8 +52,8 @@ <a href="<?php print $topic->new_url; ?>"><?php print $topic->new_text; ?></a> <?php endif; ?> </td> - <td class="created"><?php print $topic->created; ?> - <td class="last-reply"><?php print $topic->last_reply; ?> + <td class="created"><?php print $topic->created; ?></td> + <td class="last-reply"><?php print $topic->last_reply; ?></td> <?php endif; ?> </tr> <?php endforeach; ?> |