From: Thomas Mudrunka Date: Mon, 16 Apr 2012 07:18:58 +0000 (+0200) Subject: listing limit jen u vybranych trid X-Git-Url: http://git.harvie.cz/?a=commitdiff_plain;h=fe5e0ee26805d00d8b74fe79ed1afbf7c58e1d95;p=mirrors%2FSokoMan.git listing limit jen u vybranych trid --- diff --git a/index.php b/index.php index 768a184..06dd1bf 100755 --- a/index.php +++ b/index.php @@ -1045,6 +1045,8 @@ class Sklad_UI { } function process_http_request() { + $listing_limit_classes = array('item','model'); + $this->check_auth(); @ini_set('magic_quotes_gpc' , 'off'); @@ -1099,7 +1101,7 @@ class Sklad_UI { $edit=true; default: //?/?/? $history = $PATH_CHUNKS[3] == 'history' ? true : false; - $limit = is_numeric($PATH_CHUNKS[3]) ? (int) $PATH_CHUNKS[3] : FRONTEND_LISTING_LIMIT; + $limit = is_numeric($PATH_CHUNKS[3]) ? (int) $PATH_CHUNKS[3] : (in_array($class, $listing_limit_classes) ? FRONTEND_LISTING_LIMIT : 0); $offset = isset($PATH_CHUNKS[4]) ? (int) $PATH_CHUNKS[4] : 0; $where = @is_array($_GET['where']) ? $_GET['where'] : false; echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit, false);