summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-22 15:26:04 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-22 15:26:04 +0000
commitc0ec9bd51674401d27c7af8372262fa1f2d589e5 (patch)
tree2ca2bd1aa6a7e44419fe4cc80723d5cf4b34a2f5 /modules
parent36ec18969549ff173b45ae35577e035c2c19f641 (diff)
downloadbrdo-c0ec9bd51674401d27c7af8372262fa1f2d589e5.tar.gz
brdo-c0ec9bd51674401d27c7af8372262fa1f2d589e5.tar.bz2
- Patch #556136 by catch, dereine: remove theme_forum_topic_navigation().
Diffstat (limited to 'modules')
-rw-r--r--modules/forum/forum-topic-navigation.tpl.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/modules/forum/forum-topic-navigation.tpl.php b/modules/forum/forum-topic-navigation.tpl.php
index cbaada544..e69de29bb 100644
--- a/modules/forum/forum-topic-navigation.tpl.php
+++ b/modules/forum/forum-topic-navigation.tpl.php
@@ -1,35 +0,0 @@
-<?php
-// $Id$
-
-/**
- * @file
- * Default theme implementation to display the topic navigation string at the
- * bottom of all forum topics.
- *
- * Available variables:
- *
- * - $prev: The node ID of the previous post.
- * - $prev_url: The URL of the previous post.
- * - $prev_title: The title of the previous post.
- *
- * - $next: The node ID of the next post.
- * - $next_url: The URL of the next post.
- * - $next_title: The title of the next post.
- *
- * - $node: The raw node currently being viewed. Contains unsafe data
- * and any data in this must be cleaned before presenting.
- *
- * @see template_preprocess_forum_topic_navigation()
- * @see theme_forum_topic_navigation()
- */
-?>
-<?php if ($prev || $next): ?>
- <div class="forum-topic-navigation clearfix">
- <?php if ($prev): ?>
- <a href="<?php print $prev_url; ?>" class="topic-previous" title="<?php print t('Go to previous forum topic') ?>">‹ <?php print $prev_title ?></a>
- <?php endif; ?>
- <?php if ($next): ?>
- <a href="<?php print $next_url; ?>" class="topic-next" title="<?php print t('Go to next forum topic') ?>"><?php print $next_title ?> ›</a>
- <?php endif; ?>
- </div>
-<?php endif; ?>