short open tag off

This commit is contained in:
gnuboard
2013-04-25 14:29:42 +09:00
parent e53639b07d
commit 67881a5d6f
253 changed files with 3188 additions and 3194 deletions

View File

@ -1,4 +1,4 @@
<?
<?php
include_once('./_common.php');
include_once(G4_LIB_PATH.'/latest.lib.php');
$g4['title'] = $group['gr_subject'];
@ -16,7 +16,7 @@ include_once('./_head.php');
<!-- 메인화면 최신글 시작 -->
<?
<?php
// 최신글
$sql = " select bo_table, bo_subject from {$g4[board_table]} where gr_id = '{$gr_id}' and bo_list_level <= '{$member[mb_level]}' and bo_device <> 'mobile' order by bo_order ";
$result = sql_query($sql);
@ -25,8 +25,8 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
if ($i%2==1) $lt_style = "margin-left:20px";
else $lt_style = "";
?>
<div style="float:left;<?=$lt_style?>">
<?
<div style="float:left;<?php echo $lt_style ?>">
<?php
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 스킨은 입력하지 않을 경우 관리자 > 환경설정의 최신글 스킨경로를 기본 스킨으로 합니다.
@ -35,11 +35,11 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
echo latest('basic', $row['bo_table'], 5, 70);
?>
</div>
<?
<?php
}
?>
<!-- 메인화면 최신글 끝 -->
<?
<?php
include_once('./_tail.php');
?>