링크중 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

@ -48,7 +48,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="window.open(this.href);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>
@ -84,7 +84,7 @@
<!--@if($grant->is_admin)-->
<!-- 문서 관리 버튼 -->
<a href="#" onclick="popopen('{getUrl('act','dispBoardAdminManageDocument')}','manageDocument'); return false;">[{$lang->cmd_manage_document}]</a>
<a href="{getUrl('act','dispBoardAdminManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;">[{$lang->cmd_manage_document}]</a>
<!--@end-->
</div>