推荐应用
非管理员发布文章默认选择最后一个栏目的解决办法
发布于 2012-12-17
用户发布文章时默认选择栏目一,但打开后会自动选择最后一个栏目。discuz x2非管理员发布文章默认选择最后一个栏目的解决办法:
source/include/portalcp/portalcp_article.php 找到
source/include/portalcp/portalcp_article.php 找到
foreach($allowcategory as $catid => $category) {
$allowcategorycache[$catid] = $_G['cache']['portalcategory'][$catid];
}
替换为foreach($allowcategory as $allowcatid => $allowcategorys) {
$allowcategorycache[$allowcatid] = $_G['cache']['portalcategory'][$allowcatid];
}