if($main_content!='') {
$main_page=explode(",",$main_content);
if($main_page[0]=='board'){
$bo_exist=sql_fetch("select bo_table from {$g5['board_table']} where bo_table='{$main_page[1]}'");
if($bo_exist['bo_table']!='') $main_link=G5_BBS_URL."/board.php?bo_table=".$main_page[1];
else sql_query("update {$g5['config_table']} set cf_main_content=''");
}else if ($main_page[0]=='content'){
$co_exist=sql_fetch("select co_id from {$g5['content_table']} where co_id='{$main_page[1]}'");
if($co_exist!='') $main_link=G5_BBS_URL."/content.php?co_id=".$main_page[1];
else sql_query("update {$g5['config_table']} set cf_main_content=''");
}
}
return $main_link;
}
를 삽입해줍니다.
2. common.lib.php에서 get_category_list를 검색해 해당 문단을 삭제해줍니다.
function get_category_list(어쩌고) 부터 { ~ } 까지 전부!!
답변
코멘트
지비님 참고
아보카도 라이트 extend > community.config.php 를 같은 위치의 파일에 덮어씌우면 오류없이 출력돼요.
(백업 잊지 말기!)
답변
[ + ]
1.
원본 community.config.php에서 get_main_link()만 살려둡니다.
이미 지웠다면 //스타일 가져오기 바로 위의 빈 공간에,
function get_main_link(){
global $g5;
$cf=sql_fetch("select cf_main_content from {$g5['config_table']}");
$main_content=$cf['cf_main_content'];
$main_link=G5_URL."/main.php";
if($main_content!='') {
$main_page=explode(",",$main_content);
if($main_page[0]=='board'){
$bo_exist=sql_fetch("select bo_table from {$g5['board_table']} where bo_table='{$main_page[1]}'");
if($bo_exist['bo_table']!='') $main_link=G5_BBS_URL."/board.php?bo_table=".$main_page[1];
else sql_query("update {$g5['config_table']} set cf_main_content=''");
}else if ($main_page[0]=='content'){
$co_exist=sql_fetch("select co_id from {$g5['content_table']} where co_id='{$main_page[1]}'");
if($co_exist!='') $main_link=G5_BBS_URL."/content.php?co_id=".$main_page[1];
else sql_query("update {$g5['config_table']} set cf_main_content=''");
}
}
return $main_link;
}
를 삽입해줍니다.
2. common.lib.php에서 get_category_list를 검색해 해당 문단을 삭제해줍니다.
function get_category_list(어쩌고) 부터 { ~ } 까지 전부!!
답변