From fd6f2ddb431e45d33b0ea3617e3a32dc461bd94d Mon Sep 17 00:00:00 2001 From: Daku Date: Mon, 30 Dec 2013 08:42:29 +0000 Subject: [PATCH] show pool navigation box on pool/view pages --- ext/pools/theme.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ext/pools/theme.php b/ext/pools/theme.php index 3b2e315c..444e76b5 100644 --- a/ext/pools/theme.php +++ b/ext/pools/theme.php @@ -166,6 +166,13 @@ class PoolsTheme extends Themelet { $pool_images .= "\n".$thumb_html."\n"; } + $nav_html = ' + Index +
Create Pool +
Pool Changes + '; + + $page->add_block(new Block("Navigation", $nav_html, "left", 10)); $page->add_block(new Block("Viewing Posts", $pool_images, "main", 30)); $this->display_paginator($page, "pool/view/".$pools[0]['id'], null, $pageNumber, $totalPages); }