summaryrefslogtreecommitdiff
path: root/themes/seven/page.tpl.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-11 06:05:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-11 06:05:53 +0000
commit1d72b6ec9f5b577d976b51498a7212d112c5cc33 (patch)
treea74184429fcc920587d8c568d9f3d6a16347e62b /themes/seven/page.tpl.php
parentb3265dbe174ce0efefa181b8af6c1eaea3ff22c2 (diff)
downloadbrdo-1d72b6ec9f5b577d976b51498a7212d112c5cc33.tar.gz
brdo-1d72b6ec9f5b577d976b51498a7212d112c5cc33.tar.bz2
#599706 by sun: Allow altering local tasks/actions.
Diffstat (limited to 'themes/seven/page.tpl.php')
-rw-r--r--themes/seven/page.tpl.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/seven/page.tpl.php b/themes/seven/page.tpl.php
index d5d6b7b49..eee8cc667 100644
--- a/themes/seven/page.tpl.php
+++ b/themes/seven/page.tpl.php
@@ -4,11 +4,11 @@
<div id="branding" class="clearfix">
<?php print $breadcrumb; ?>
<?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
- <?php if ($primary_local_tasks): ?><ul class="tabs primary"><?php print $primary_local_tasks; ?></ul><?php endif; ?>
+ <?php if ($primary_local_tasks): ?><ul class="tabs primary"><?php print render($primary_local_tasks); ?></ul><?php endif; ?>
</div>
<div id="page">
- <?php if ($secondary_local_tasks): ?><ul class="tabs secondary"><?php print $secondary_local_tasks; ?></ul><?php endif; ?>
+ <?php if ($secondary_local_tasks): ?><ul class="tabs secondary"><?php print render($secondary_local_tasks); ?></ul><?php endif; ?>
<div id="content" class="clearfix">
<?php if ($show_messages && $messages): ?>
@@ -19,7 +19,7 @@
<?php print render($page['help']); ?>
</div>
<?php endif; ?>
- <?php if ($action_links): ?><ul class="action-links"><?php print $action_links; ?></ul><?php endif; ?>
+ <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
<?php print render($page['content']); ?>
</div>