Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 * delete 버튼을 위에도 마련.
  • Loading branch information
inureyes committed Jun 9, 2008
1 parent 4005a28 commit 7bcb8e3
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
5 changes: 5 additions & 0 deletions interface/owner/communication/comment/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,11 @@ function toggleThisTr(obj) {
if(isset($_POST['search'])) echo ' <input type="hidden" name="search" value="'.$_POST['search'].'" />'.CRLF;
if(isset($_POST['withSearch'])) echo ' <input type="hidden" name="withSearch" value="'.$_POST['withSearch'].'" />'.CRLF;
?>
<div id="delete-section-top" class="section">
<span class="label"><?php echo _t('선택한 댓글을');?></span>
<input type="button" class="delete-button input-button" value="<?php echo _t('삭제');?>" onclick="deleteComments();" />
</div>

<table class="data-inbox" cellspacing="0" cellpadding="0">
<thead>
<tr>
Expand Down
6 changes: 6 additions & 0 deletions interface/owner/communication/trackback/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,12 @@ function toggleThisTr(obj) {
?>
<input type="hidden" name="status" value="sent" />
<?php } ?>

<div id="delete-section-top" class="section">
<span class="label"><?php echo _t('선택한 걸린글을');?></span>
<input type="button" class="delete-button input-button" value="<?php echo _t('삭제');?>" onclick="trashTrackbacks();return false;" />
</div>

<table class="data-inbox" cellspacing="0" cellpadding="0">
<thead>
<tr>
Expand Down
4 changes: 2 additions & 2 deletions language/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@
//$__text['서비스 설정값 테이블의 필드 속성을 변경합니다.'] = '';
//$__text['서비스 설정을 위한 테이블을 추가합니다.'] = '';
$__text['서비스'] = 'Service';
$__text['서비스관리'] = 'Manage service';
$__text['서비스관리'] = 'Manage';
$__text['서식 목록'] = 'Template list';
$__text['서식 선택'] = 'Choose a template';
$__text['서식'] = 'Template';
Expand Down Expand Up @@ -1201,7 +1201,7 @@
$__text['스킨 및 트리, 플러그인의 저작권은 각 제작자에게 있습니다.'] = 'Copyrights to the themes, trees, and plugins belong to their respective producers';
$__text['스킨 변경'] = 'Change Theme';
$__text['스킨 상세 설정'] = 'Detail setting';
$__text['스킨 선택'] = 'Select';
$__text['스킨 선택'] = 'Choose';
//$__text['스킨 설정 테이블에 검색 결과 출력시 목록 및 글 출력 설정을 위한 필드를 추가합니다.'] = '';
$__text['스킨 설정 테이블에 공지 길이 제한 필드를 추가합니다.'] = 'Adding notice length limit field on theme setting table.';
$__text['스킨 설정 테이블에 아카이브 출력 설정 필드를 추가합니다.'] = 'Adding archive display setting field on theme setting table.';
Expand Down
10 changes: 10 additions & 0 deletions style/admin/whitedream/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -1005,6 +1005,16 @@ table.data-inbox tbody tr td.inactive-class
width : 924px;
}

#change-section-top,
#delete-section-top
{
background-color : #FFF;
border-top : none;
margin : 0 auto 5px auto;
padding : 8px;
width : 924px;
}

#page-navigation
{
background-color : #FFFFFF;
Expand Down

0 comments on commit 7bcb8e3

Please sign in to comment.