From 2d7eb3b97eb802f700965cc88a9b049687e8abf0 Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sat, 5 Nov 2011 22:58:01 +0100 Subject: 2 Small bugfixes. 1. Corrected a SQL-Query in models.php 2. will now set maxpages properly, if there are no articles found. --- ratatoeskr/frontend.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ratatoeskr/frontend.php') diff --git a/ratatoeskr/frontend.php b/ratatoeskr/frontend.php index c1daeb9..1739f8b 100644 --- a/ratatoeskr/frontend.php +++ b/ratatoeskr/frontend.php @@ -271,7 +271,10 @@ $ste->register_tag("articles_get", function($ste, $params, $sub) if(isset($params["perpage"])) { if(isset($params["maxpage"])) - $ste->set_var_by_name($params["maxpage"], ceil(count($result) / $params["perpage"])); + { + $maxpage = ceil(count($result) / $params["perpage"]); + $ste->set_var_by_name($params["maxpage"], $maxpage == 0 ? 1 : $maxpage); + } $page = isset($params["page"]) ? $params["page"] : 1; $result = array_slice($result, ($page - 1) * $params["perpage"], $params["perpage"]); } -- cgit v1.2.3-54-g00ecf