modules / board/ tpl / board_insert.html 파일
94줄에...
<tr>
<th scope="row"><div>{$lang->list_count}</div></th>
<td>
<input type="text" name="list_count" value="{$module_info->list_count?
$module_info->list_count:20}" class="inputTypeText" />
<p>{$lang->about_list_count}</p>
</td>
</tr>
위와 같은 내용중... 20숫자를 100으로 바꾸면 게시판 생성시 기본출력 리스트 값이 100으로 찍혀서 나옵니다^^;
간단한 팁이지만... 매번 생성시 마다 특정 세팅값으로 하고 싶으시면 수정하시면 됩니다^^;
다른 세팅값들도 살펴보시면 아실겁니다.
<tr>
<th scope="row"><div>{$lang->layout}</div></th>
<td>
<select name="layout_srl">
<option value="0">{$lang->notuse}</option>
<
!--@foreach($layout_list as $key => $val)-->
<option value="{$val->layout_srl}" <
!--@if($module_info->layout_srl==$val->layout_srl ||(!$module_info->layout_srl && $val->layout_srl==14108))-->selected="selected"<
!--@end-->>{$val->title} ({$val->layout})</option>
<
!--@end-->
</select>
<p>{$lang->about_layout}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->skin}</div></th>
<td>
<select name="skin">
<
!--@foreach($skin_list as $key=>$val)-->
<option value="{$key}" <
!--@if($module_info->skin==$key ||(!$module_info->skin && $key=='uhakvision_board'))-->selected="selected"<
!--@end-->
</select>
<p>{$lang->about_skin}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->secret}</div></th>
<td>
<input type="checkbox" name="secret" value="Y" <
!--@if($module_info->secret!='N')-->checked="checked"<!--@end--> />
<p>{nl2br($lang->about_secret)}</p>
</td>
</tr>