링크중 href에 #을 주고 onclick에 url을 추가한 부분의 코드를 href에 url을, onclick에 window.open(this.href).. 로 모두 변경

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2105 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-01 04:25:12 +00:00
parent cb5d14d0ad
commit 12af1fdf18
55 changed files with 113 additions and 113 deletions

View file

@ -60,7 +60,7 @@
<!-- 최고관리자이면 관리자 페이지 버튼 출력 -->
<!--@if($logged_info->is_admin == 'Y')-->
<li class="admin"><a href="#" onclick="winopen('{getUrl('','module','admin','act','dispBoardAdminContent')}'); return false;">{$lang->cmd_management}</a></li>
<li class="admin"><a href="{getUrl('','module','admin','act','dispBoardAdminContent')}" onclick="window.open(this.href); return false;">{$lang->cmd_management}</a></li>
<!--@end-->
<!-- 레이아웃이 없으면 로그아웃 버튼 출력 -->

View file

@ -89,7 +89,7 @@
<!--@if($grant->view)-->
<!--@if($search_target && $search_keyword)-->
<a href="#" onclick="winopen('{getUrl('','document_srl',$document->document_srl)}','viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
<a href="{getUrl('','document_srl',$document->document_srl)}" onclick="winopen(this.href,'viewDocument');return false;">{$document->getTitleText($module_info->subject_cut_size)}</a>
<!--@else-->
<a href="{getUrl('','document_srl',$document->document_srl)}">{$document->getTitleText($module_info->subject_cut_size)}</a>
<!--@end-->
@ -130,7 +130,7 @@
<!--@if($grant->is_admin)-->
<!-- 문서 관리 버튼 -->
<div class="gap1 fl">
<a href="#" onclick="popopen('{getUrl('act','dispBoardAdminManageDocument')}','manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
<a href="{getUrl('act','dispBoardAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;" class="button"><span>{$lang->cmd_manage_document}</span></a>
</div>
<!--@end-->
@ -164,7 +164,7 @@
</select>
<input type="text" name="search_keyword" value="{htmlspecialchars($search_keyword)}" class="inputTypeText"/>
<a href="#" onclick="xGetElementById('fo_search').submit();return false;" class="button"><span>{$lang->cmd_search}</span></a>
<a href="#" onclick="location.href='{getUrl('','mid',$mid)}';return false;" class="button"><span>{$lang->cmd_cancel}</span></a>
<a href="{getUrl('','mid',$mid)}" class="button"><span>{$lang->cmd_cancel}</span></a>
</fieldset>
</form>
</div>