aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-01-18 21:56:20 +0000
committerz0rglub <z0rglub@piwigo.org>2004-01-18 21:56:20 +0000
commit7250f30ce760fe59be5f6fa4605b86291ca3a0ce (patch)
tree2c65863b1380955f0f1315c47da5c7cfaad8b330
parent5efed0a4e0021681bc477ef8a5715c9923c252f1 (diff)
Use the stored calculated date users.forbidden_categories instead of trying
to use a deprecated function get_all_restrictions git-svn-id: http://piwigo.org/svn/branches/release-1_3@293 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/include/functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php
index 64c494643..a3a6844f4 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -313,14 +313,14 @@ function delete_group( $group_id )
// or invisible)
function check_favorites( $user_id )
{
- $query = 'SELECT status';
+ $query = 'SELECT status,forbidden_categories';
$query.= ' FROM '.PREFIX_TABLE.'users';
$query.= ' WHERE id = '.$user_id;
$query.= ';';
$row = mysql_fetch_array( mysql_query( $query ) );
$status = $row['status'];
// retrieving all the restricted categories for this user
- $restricted_cat = get_all_restrictions( $user_id, $status );
+ $restricted_cat = explode( ',', $row['forbidden_categories'] );
// retrieving all the favorites for this user and comparing their
// categories to the restricted categories
$query = 'SELECT image_id';