X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=index.php;h=06dd1bf69c31a4f809082503b56846378541a39d;hb=fe5e0ee26805d00d8b74fe79ed1afbf7c58e1d95;hp=768a1845c7b1ba300ce4b385a09f458173a520db;hpb=928bb5a6f34a0edb17af5d5a96fecd523473951a;p=mirrors%2FSokoMan.git 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);