diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-26 23:52:22 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-26 23:52:22 +0000 |
commit | bfb4b15d2f75835033d9bbb865edd77dcb282bb6 (patch) | |
tree | 80f55833ccce52ffe2f5f4ae320bd90234682cfd /include/filter.inc.php | |
parent | eac687a6e67aec80481830e3899eaf19776a513d (diff) |
- bug 654: sql error on user comment (since my commit 1849)
- languages: english corrections + keep lang files sorted by key
- admin multi view correction: language was not always properly changed
- refactor function get_computed_categories (with rub's blessing)
git-svn-id: http://piwigo.org/svn/trunk@1860 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/filter.inc.php')
-rw-r--r-- | include/filter.inc.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/filter.inc.php b/include/filter.inc.php index fb0474bbd..f373ca1cd 100644 --- a/include/filter.inc.php +++ b/include/filter.inc.php @@ -3,7 +3,6 @@ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2006-2007 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ -// | branch : BSF (Best So Far) // | file : $Id$ // | last update : $Date$ // | last modifier : $Author$ @@ -75,7 +74,7 @@ if ($filter['enabled']) { // Need to compute dats $filter['check_key'] = get_filter_check_key(); - $filter['categories'] = get_computed_categories($user['id'], $user['forbidden_categories'], true, $filter['recent_period']); + $filter['categories'] = get_computed_categories($user, (int)$filter['recent_period']); $filter['visible_categories'] = implode(',', array_keys($filter['categories'])); if (empty($filter['visible_categories'])) |