Merge branch 'master' of github.com:gnuboard/g4s

This commit is contained in:
gnuboard
2013-08-27 17:06:16 +09:00
12 changed files with 180 additions and 68 deletions

View File

@ -198,6 +198,17 @@ if ($config['cf_kcpcert_use'] != '' && !$is_admin) {
}
}
// 글자수 제한 설정값
if ($is_admin || $board['bo_use_dhtml_editor'])
{
$write_min = $write_max = 0;
}
else
{
$write_min = (int)$board['bo_write_min'];
$write_max = (int)$board['bo_write_max'];
}
$g4['title'] = $board['bo_subject']." ".$title_msg;
$is_notice = false;