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

@ -28,7 +28,7 @@
<!--@foreach($menu_list as $no => $val)-->
<tr>
<td class="tahoma">{$no}</td>
<td class="blue"><a href="#" onclick="location.href='{getUrl('act','dispMenuAdminManagement','menu_srl',$val->menu_srl)}';return false;">{htmlspecialchars($val->title)}</a></td>
<td class="blue"><a href="{getUrl('act','dispMenuAdminManagement','menu_srl',$val->menu_srl)}">{htmlspecialchars($val->title)}</a></td>
<td class="tahoma">{zdate($val->regdate,"Y-m-d")}</td>
<td class="tahoma red"><a href="#" onclick="doDeleteMenu('{$val->menu_srl}');return false;">{$lang->cmd_delete}</a></td>
</tr>

View file

@ -21,7 +21,7 @@
<th scope="row">{$lang->menu_url}</th>
<td>
<input type="text" name="menu_url" value="{htmlspecialchars($item_info->url)}" class="inputTypeText" />
<a href="#" onclick="popopen('{getUrl('module','menu','act','dispMenuAdminMidList')}');return false;" class="button"/><span>{$lang->cmd_search_mid}</span></a>
<a href="{getUrl('module','menu','act','dispMenuAdminMidList')}" onclick="popopen(this.href);return false;" class="button"/><span>{$lang->cmd_search_mid}</span></a>
<p class="clear">{$lang->about_menu_url}</p>
</td>
</tr>