diff --git a/admin/cat_modify.php b/admin/cat_modify.php index 4a385217d..b0876ecb8 100644 --- a/admin/cat_modify.php +++ b/admin/cat_modify.php @@ -235,6 +235,7 @@ if (!empty($category['id_uppercat'])) $template->assign( array( 'CATEGORIES_NAV' => $navigation, + 'CAT_ID' => $category['id'], 'CAT_NAME' => @htmlspecialchars($category['name']), 'CAT_COMMENT' => @htmlspecialchars($category['comment']), diff --git a/admin/include/functions.php b/admin/include/functions.php index 4b0713226..658033e0c 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -1899,4 +1899,27 @@ SELECT id ); } } + +/** + * Is the category accessible to the (Admin) user ? + * + * Note : if the user is not authorized to see this category, category jump + * will be replaced by admin cat_modify page + * + * @param int category id to verify + * @return bool + */ +function cat_admin_access($category_id) +{ + global $user; + + // $filter['visible_categories'] and $filter['visible_images'] + // are not used because it's not necessary (filter <> restriction) + if (in_array($category_id, explode(',', $user['forbidden_categories']))) + { + return false; + } + return true; +} + ?> \ No newline at end of file diff --git a/admin/template/goto/cat_list.tpl b/admin/template/goto/cat_list.tpl index 4bf158baf..9f26e1f9c 100644 --- a/admin/template/goto/cat_list.tpl +++ b/admin/template/goto/cat_list.tpl @@ -48,7 +48,9 @@