diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-09-25 00:39:12 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-09-25 00:39:12 +0000 |
commit | a3dc10babc0609f2a097bca76da1de8b2d92ace6 (patch) | |
tree | f1306ee84a47dfa818dbb234433fca2a35ac223c /include/functions_category.inc.php | |
parent | c15f6faced7691ce67015fe1d1b61ff270ae5f96 (diff) |
- sql optim: do not include category_cats (which makes a query) if current category does not have children (info known when building menubar)
- in index.php - fill the template completely before including menubar/category_cats/thumbnails (some themes might want to use in the menubar some vars ...)
git-svn-id: http://piwigo.org/svn/trunk@2586 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_category.inc.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/functions_category.inc.php b/include/functions_category.inc.php index 53f98a5c2..26c9478ef 100644 --- a/include/functions_category.inc.php +++ b/include/functions_category.inc.php @@ -103,6 +103,8 @@ WHERE '.$where.' while ($row = mysql_fetch_assoc($result)) { array_push($cats, $row); + if ($row['id']==@$page['category']['id']) //save the number of subcats for later optim + $page['category']['count_categories'] = $row['count_categories']; } usort($cats, 'global_rank_compare'); |