diff options
author | rub <rub@piwigo.org> | 2007-01-15 00:09:14 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-01-15 00:09:14 +0000 |
commit | 9362801a48c6e88fcc9bd56e69ba044f718c6b74 (patch) | |
tree | 5c05741cb7262fc51d6c6ad6b6b2bd8c44e0353f /include/common.inc.php | |
parent | 3cef1e6895ed3daeb398980b22cab1c1edefa3c3 (diff) |
There are no filter enabled if filter configuration is empty (no icon, no functions, ...)
New system for the filter page configuration
View mode flat_recent_cat becomes flat_cat (recent period is removed because global filter is sufficient)
Recent period of global filter must be defined "after" start parameter (default value is $user['recent_period']).
git-svn-id: http://piwigo.org/svn/trunk@1722 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/common.inc.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 01e6869e1..5a0a82ff9 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -231,11 +231,17 @@ if (count($header_msgs) > 0) } } -if (!defined('IN_ADMIN') or !IN_ADMIN) +if (!empty($conf['filter_pages']) and get_filter_page_value('used')) { include(PHPWG_ROOT_PATH.'include/functions_filter.inc.php'); include(PHPWG_ROOT_PATH.'include/filter.inc.php'); } +else +{ + // global variable for filter + $filter = array(); + $filter['enabled'] = false; +} if (isset($conf['header_notes'])) { |