summaryrefslogtreecommitdiff
path: root/modules/book/book-navigation.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/book/book-navigation.tpl.php')
-rw-r--r--modules/book/book-navigation.tpl.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/book/book-navigation.tpl.php b/modules/book/book-navigation.tpl.php
index e5883dc56..5d8e9aa7f 100644
--- a/modules/book/book-navigation.tpl.php
+++ b/modules/book/book-navigation.tpl.php
@@ -35,13 +35,13 @@
<?php if ($has_links): ?>
<div class="page-links clearfix">
- <?php if ($prev_url) : ?>
+ <?php if ($prev_url): ?>
<a href="<?php print $prev_url; ?>" class="page-previous" title="<?php print t('Go to previous page'); ?>"><?php print t('‹ ') . $prev_title; ?></a>
<?php endif; ?>
- <?php if ($parent_url) : ?>
+ <?php if ($parent_url): ?>
<a href="<?php print $parent_url; ?>" class="page-up" title="<?php print t('Go to parent page'); ?>"><?php print t('up'); ?></a>
<?php endif; ?>
- <?php if ($next_url) : ?>
+ <?php if ($next_url): ?>
<a href="<?php print $next_url; ?>" class="page-next" title="<?php print t('Go to next page'); ?>"><?php print $next_title . t(' ›'); ?></a>
<?php endif; ?>
</div>