diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-15 00:10:41 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-15 00:10:41 +0000 |
commit | 11714951b33d340f13400aa8fc9a2b971f8d8e8b (patch) | |
tree | 4baaeddd0b5b697b99fea5b45c99ac098a69dee2 /include/category_cats.inc.php | |
parent | b39e05fd5a1c9ea95aab7ee35902dfbc5c3d924a (diff) |
- feature 642: display both subcategory thumbnails and element thumbnails (if a
category has both) in the index page
- get rid of $page['cat_nb_images'] and $page['thumbnails_include'] (superfluous)
- changed sql queries in section_init.inc.php for better performance with
flat category view
- web service fixes for categories.getList
git-svn-id: http://piwigo.org/svn/trunk@1820 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/category_cats.inc.php | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/include/category_cats.inc.php b/include/category_cats.inc.php index 8f8f3ba50..cd54b760e 100644 --- a/include/category_cats.inc.php +++ b/include/category_cats.inc.php @@ -181,11 +181,7 @@ if (count($categories) > 0) if ($conf['subcatify']) { - $template->set_filenames( - array( - 'mainpage_categories' => 'mainpage_categories.tpl', - ) - ); + $template->set_filename('mainpage_categories', 'mainpage_categories.tpl'); foreach ($categories as $category) { @@ -231,7 +227,7 @@ if (count($categories) > 0) } else { - $template->set_filenames( array( 'thumbnails' => 'thumbnails.tpl',)); + $template->set_filename( 'thumbnails', 'thumbnails.tpl'); // first line $template->assign_block_vars('thumbnails.line', array()); // current row displayed @@ -295,7 +291,8 @@ if (count($categories) > 0) $conf['level_separator']=$old_level_separator; } - $template->assign_var_from_handle('THUMBNAILS', 'thumbnails'); + $template->assign_var_from_handle('CATEGORIES', 'thumbnails'); + unset( $template->_tpldata['thumbnails.'] );//maybe write a func for that } } ?> |