關于dedecms5.5/5.6 專題不能選取一級欄目的解決方法
打開/dede/inc/inc_catalog_options.php,將以下代碼完全替換,即可。
烈火提示:
上面加粗的dede為后臺目錄,請注意自己的后臺是否修改了。另外,使用以下代碼前,請注意備份。
Copy to ClipboardLiehuo.Net Codes引用的內容:[www.CUOxin.com]<?php function GetOptionList($selid=0,$userCatalog=0,$channeltype=0) { global $OptionArrayList,$channels,$dsql; $dsql->SetQuery("Select id,typename From `dede_channeltype` "); $dsql->Execute(); $channels = Array(); while($row = $dsql->GetObject()) $channels[$row->id] = $row->typename; $OptionArrayList = ""; //當前選中的欄目 if($selid > 0) { $row = $dsql->GetOne("Select id,typename,ispart,channeltype From `dede_arctype` where id='$selid'"); if($row['ispart']==1) $OptionArrayList .= "<option value='".$row['id']."' class='option1' selected='selected'>".$row['typename']."(封面頻道)</option>/r/n"; else $OptionArrayList .= "<option value='".$row['id']."' selected='selected'>".$row['typename']."</option>/r/n"; } //是否限定用戶管理的欄目 if($userCatalog>0) { $query = "Select id,typename,ispart,channeltype From `dede_arctype` where ispart<>2 And id='$userCatalog' "; } else { $query = "Select id,typename,ispart,channeltype From `dede_arctype` where ispart<>2 And reid=0 order by sortrank asc "; } $dsql->SetQuery($query); $dsql->Execute(); while($row=$dsql->GetObject()) { if($row->ispart==1) $OptionArrayList .= "<option value='".$row->id."' class='option1'>".$row->typename."(封面頻道)</option>/r/n"; else if($row->ispart==2) $OptionArrayList .=""; else if($row->channeltype!=$channeltype && $channeltype!=0) $OptionArrayList .= "<option value='".$row->id."' class='option2'>".$row->typename."(".$channels[$row->channeltype].")</option>/r/n"; else $OptionArrayList .= "<option value='".$row->id."' class='option3'>".$row->typename."</option>/r/n"; LogicGetOptionArray($row->id,"─",$channeltype,$dsql); } // liehuo.netreturn $OptionArrayList; } function LogicGetOptionArray($id,$step,$channeltype,&$dsql) { global $OptionArrayList,$channels; $dsql->SetQuery("Select id,typename,ispart,channeltype From `dede_arctype` where reid='".$id."' And ispart<>2 order by sortrank asc"); $dsql->Execute($id); while($row=$dsql->GetObject($id)) { if($row->ispart==1) $OptionArrayList .= "<option value='".$row->id."' class='option1'>$step".$row->typename."(封面頻道)</option>/r/n"; else if($row->ispart==2) $OptionArrayList .=""; else if($row->channeltype!=$channeltype && $channeltype!=0) $OptionArrayList .=''; else $OptionArrayList .= "<option value='".$row->id."' class='option3'>$step".$row->typename."</option>/r/n"; LogicGetOptionArray($row->id,$step."─",$channeltype,$dsql); } } ?> |
新聞熱點
疑難解答