大家可以修改目录 admin/content_list.php
找到
把其改为//栏目浏览许可
$userCatalogSql = ''; if(TestPurview('a_List')) { ; } else if() { ......... }
//栏目浏览许可 $userCatalogSql = ''; if(TestPurview('a_List')) { ; } else { if(TestPurview('a_AccList')) { if($cid==0 && $cfg_admin_channel == 'array') { $admin_catalog = join(',', $admin_catalogs); $userCatalogSql = " arc.typeid in($admin_catalog) "; } else { CheckCatalog($cid, '你无权浏览非指定栏目的内容!'); } } if(TestPurview('a_MyList')) { $mid = $cuserLogin->getUserID(); } }