1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 09:04:38 +02:00

featurebox - more flexibility (to be used from external code mostly)

This commit is contained in:
secretr
2010-11-20 15:43:02 +00:00
parent ae3890da18
commit b8e6006bf9
3 changed files with 21 additions and 4 deletions

View File

@@ -153,7 +153,8 @@ class plugin_featurebox_category extends e_model
$options = array(
'limit' => $this->getParam('limit', $this->get('fb_category_limit')),
'from' => $this->getParam('from', 0),
'random' => $this->getParam('random', $this->get('fb_category_random'))
'random' => $this->getParam('random', $this->get('fb_category_random')),
'ids' => $this->getParam('ids', '')
);
$this->_tree->load($this->getId(), $options, $force);
}