remove short open tag

This commit is contained in:
Amberstone 2024-09-26 09:28:12 +09:00
parent 5d97278794
commit 624445e5da
Signed by: amber
GPG key ID: 094B0E55F98D8BF1
3 changed files with 16 additions and 17 deletions

View file

@ -754,7 +754,7 @@ if ($css['input_bak'][11])
?>}
*::placeholder {
<? if ($css['input_bak'][3])
<?php if ($css['input_bak'][3])
echo "color:" . hex2rgba($css['input_bak'][3], ($css['input_bak'][4] + 50)) . "; "; ?>}

View file

@ -1,7 +1,7 @@
<?
<?php
/*******************
Board Plugin 파일
-----------------------------
캐릭터 관리와 관련된 추가 플러그인 파일 , 해당 폴더에 링크를 등록하면 자동으로 캐릭터 프로필에 링크가 출력됩니다.
자세한 샘플은 유료 플러그인에 포함된 파일을 확인해주세요!
*******************/ ?>
*******************/

View file

@ -14,7 +14,7 @@ add_stylesheet('<link rel="stylesheet" href="' . $menu_skin_url . '/css/style.L.
</a>
</li>
<li class="line"></li>
<?
<?php
$menu_sql = " select * from {$g5['menu_table']} where me_use = '1' order by me_order*1 asc, me_id asc";
$menu = sql_query($menu_sql);
@ -29,57 +29,56 @@ add_stylesheet('<link rel="stylesheet" href="' . $menu_skin_url . '/css/style.L.
} else {
?>
<li>
<a href="<?php echo $me['me_link'] ?>" <? if ($me['me_target']) { ?>target="_<?= $me['me_target'] ?>" <? } ?>
class="change-link">
<a href="<?php echo $me['me_link'] ?>" <?php if ($me['me_target']) { ?>target="_<?= $me['me_target'] ?>" <?php } ?> class="change-link">
<span class="icons"><span><i class="material-icons"><?= $me['me_icon'] ?></i></span></span>
<span class="tooltips"><?= $me['me_name'] ?></span>
</a>
</li>
<? }
<?php }
} ?>
<li class="line"></li>
<? if (!$is_member) { //멤버가 아닐 경우 ?>
<?php if (!$is_member) { //멤버가 아닐 경우 ?>
<li>
<a href="<?= G5_BBS_URL ?>/login.php">
<span class="icons"><span><i class="material-icons">login</i></span></span>
<span class="tooltips">LOGIN</span>
</a>
</li>
<? if ($is_add_register) { //회원가입이 가능한 경우 ?>
<?php if ($is_add_register) { //회원가입이 가능한 경우 ?>
<li>
<a href="<?= G5_BBS_URL ?>/register.php" class="change-link">
<span class="icons"><span><i class="material-icons">person_add</i></span></span>
<span class="tooltips">JOIN</span>
</a>
</li>
<? } ?>
<? } else { //멤버일 경우 ?>
<?php } ?>
<?php } else { //멤버일 경우 ?>
<li>
<a href="<?= G5_BBS_URL ?>/logout.php">
<span class="icons"><span><i class="material-icons">logout</i></span></span>
<span class="tooltips">LOGOUT</span>
</a>
</li>
<? if ($is_admin) { ?>
<?php if ($is_admin) { ?>
<li>
<a href="<?= G5_URL ?>/adm" target="_blank">
<span class="icons"><span><i class="material-icons">settings</i></span></span>
<span class="tooltips">ADMIN</span>
</a>
</li>
<? } else { ?>
<?php } else { ?>
<li>
<a href="<?= G5_BBS_URL ?>/member_confirm.php?url=register_form.php" class="change-link">
<span class="icons"><span><i class="material-icons">settings</i></span></span>
<span class="tooltips">정보수정</span>
</a>
</li>
<? } ?>
<? } ?>
<?php } ?>
<?php } ?>
<? if (defined('_INDEX_') && $config['cf_bgm']) { ?>
<?php if (defined('_INDEX_') && $config['cf_bgm']) { ?>
<li class="bgm-btn">
<div id="site_bgm_box">
<iframe src="./bgm.php?action=play" name="bgm_frame" id="bgm_frame" border="0" frameborder="0" marginheight="0"
@ -96,5 +95,5 @@ add_stylesheet('<link rel="stylesheet" href="' . $menu_skin_url . '/css/style.L.
<span class="tooltips">BGM OFF</span>
</a>
</li>
<? } ?>
<?php } ?>
</ul>