Merge branch 'g5'
This commit is contained in:
@ -32,5 +32,6 @@ delete_cache_latest($tmp_bo_table);
|
|||||||
rm_rf(G5_DATA_PATH.'/file/'.$tmp_bo_table);
|
rm_rf(G5_DATA_PATH.'/file/'.$tmp_bo_table);
|
||||||
|
|
||||||
// syndication ping
|
// syndication ping
|
||||||
|
if(G5_SYNDI_USE)
|
||||||
include G5_SYNDI_PATH.'/include/include.adm.board_delete.inc.php';
|
include G5_SYNDI_PATH.'/include/include.adm.board_delete.inc.php';
|
||||||
?>
|
?>
|
||||||
@ -386,6 +386,7 @@ if ($all_fields) {
|
|||||||
delete_cache_latest($bo_table);
|
delete_cache_latest($bo_table);
|
||||||
|
|
||||||
// syndication ping
|
// syndication ping
|
||||||
|
if(G5_SYNDI_USE)
|
||||||
include G5_SYNDI_PATH.'/include/include.adm.board_form_update.php';
|
include G5_SYNDI_PATH.'/include/include.adm.board_form_update.php';
|
||||||
|
|
||||||
goto_url("./board_form.php?w=u&bo_table={$bo_table}&{$qstr}");
|
goto_url("./board_form.php?w=u&bo_table={$bo_table}&{$qstr}");
|
||||||
|
|||||||
@ -66,6 +66,7 @@ if ($w == '') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// syndication ping
|
// syndication ping
|
||||||
|
if(G5_SYNDI_USE)
|
||||||
include G5_SYNDI_PATH.'/include/include.adm.boardgroup_form_update.php';
|
include G5_SYNDI_PATH.'/include/include.adm.boardgroup_form_update.php';
|
||||||
|
|
||||||
goto_url('./boardgroup_form.php?w=u&gr_id='.$gr_id.'&'.$qstr);
|
goto_url('./boardgroup_form.php?w=u&gr_id='.$gr_id.'&'.$qstr);
|
||||||
|
|||||||
@ -94,6 +94,7 @@ while ($row = sql_fetch_array($result))
|
|||||||
sql_query(" delete from {$g5['board_file_table']} where bo_table = '$bo_table' and wr_id = '{$row['wr_id']}' ");
|
sql_query(" delete from {$g5['board_file_table']} where bo_table = '$bo_table' and wr_id = '{$row['wr_id']}' ");
|
||||||
|
|
||||||
// syndication ping
|
// syndication ping
|
||||||
|
if(G5_SYNDI_USE)
|
||||||
include G5_SYNDI_PATH.'/include/include.bbs.delete.php';
|
include G5_SYNDI_PATH.'/include/include.bbs.delete.php';
|
||||||
|
|
||||||
$count_write++;
|
$count_write++;
|
||||||
|
|||||||
@ -107,6 +107,7 @@ for ($i=count($tmp_array)-1; $i>=0; $i--)
|
|||||||
sql_query(" delete from {$g5['board_file_table']} where bo_table = '$bo_table' and wr_id = '{$row['wr_id']}' ");
|
sql_query(" delete from {$g5['board_file_table']} where bo_table = '$bo_table' and wr_id = '{$row['wr_id']}' ");
|
||||||
|
|
||||||
// syndication ping
|
// syndication ping
|
||||||
|
if(G5_SYNDI_USE)
|
||||||
include G5_SYNDI_PATH.'/include/include.bbs.delete_all.php';
|
include G5_SYNDI_PATH.'/include/include.bbs.delete_all.php';
|
||||||
|
|
||||||
$count_write++;
|
$count_write++;
|
||||||
|
|||||||
@ -186,6 +186,7 @@ if ($sw == 'move')
|
|||||||
}
|
}
|
||||||
|
|
||||||
// syndication ping
|
// syndication ping
|
||||||
|
if(G5_SYNDI_USE)
|
||||||
include G5_SYNDI_PATH.'/include/include.bbs.move_update.php';
|
include G5_SYNDI_PATH.'/include/include.bbs.move_update.php';
|
||||||
|
|
||||||
$msg = '해당 게시물을 선택한 게시판으로 '.$act.' 하였습니다.';
|
$msg = '해당 게시물을 선택한 게시판으로 '.$act.' 하였습니다.';
|
||||||
|
|||||||
@ -477,6 +477,7 @@ if ($w == '' || $w == 'r') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// syndication ping
|
// syndication ping
|
||||||
|
if(G5_SYNDI_USE)
|
||||||
include G5_SYNDI_PATH.'/include/include.bbs.write_update.php';
|
include G5_SYNDI_PATH.'/include/include.bbs.write_update.php';
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|||||||
@ -114,6 +114,7 @@ define('G5_PHPMAILER_PATH', G5_PLUGIN_PATH.'/'.G5_PHPMAILER_DIR);
|
|||||||
|
|
||||||
define('G5_USE_MOBILE', true); // 모바일 홈페이지를 사용하지 않을 경우 false 로 설정
|
define('G5_USE_MOBILE', true); // 모바일 홈페이지를 사용하지 않을 경우 false 로 설정
|
||||||
define('G5_USE_CACHE', true); // 최신글등에 cache 기능 사용 여부
|
define('G5_USE_CACHE', true); // 최신글등에 cache 기능 사용 여부
|
||||||
|
define('G5_SYNDI_USE', true); // Syndication 기능 사용 여부
|
||||||
|
|
||||||
|
|
||||||
/********************
|
/********************
|
||||||
|
|||||||
Reference in New Issue
Block a user