From ea393ca985b33a55ba5d5a71cd3e6fb353a3f552 Mon Sep 17 00:00:00 2001 From: shish Date: Tue, 29 May 2007 02:03:13 +0000 Subject: [PATCH] allow paginator to be styled separately git-svn-id: file:///home/shish/svn/shimmie2/trunk@141 7f39781d-f577-437e-ae19-be835c7a54ca --- core/paginator.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/paginator.class.php b/core/paginator.class.php index f1974290..1cfdc15d 100644 --- a/core/paginator.class.php +++ b/core/paginator.class.php @@ -44,7 +44,7 @@ class Paginator extends Block { } $pages_html = implode(" | ", $pages); - return "

$first_html | $prev_html | $random_html | $next_html | $last_html". + return "

$first_html | $prev_html | $random_html | $next_html | $last_html". "
<< $pages_html >>

"; } }