Minahito
minah****@users*****
2006年 1月 25日 (水) 12:44:20 JST
Index: xoops2jp/html/modules/base/admin/templates/legacy_xoops_confirm.html diff -u /dev/null xoops2jp/html/modules/base/admin/templates/legacy_xoops_confirm.html:1.1.2.1 --- /dev/null Wed Jan 25 12:44:20 2006 +++ xoops2jp/html/modules/base/admin/templates/legacy_xoops_confirm.html Wed Jan 25 12:44:20 2006 @@ -0,0 +1,21 @@ +<div class='confirmMsg'> + <h4><{$message}></h4> + <form method="post" action="<{$action|escape}>"> + <{xoops_input type=hidden name=$tokenName value=$tokenValue}> + <{foreach key=key item=value from=$hiddens}> + <{if is_array($value)}> + <{foreach key=radioName item=radioValue from=$value}> + <{xoops_input type=radio name=$key value=$radioValue}><{$radioName|escape}><br/> + <{/foreach}> + <{else}> + <{xoops_input type=hidden name=$key value=$value}> + <{/if}> + <{/foreach}> + <{if submit}> + <input type="submit" name="confirm_submit" value="<{$submit}>" /> + <{else}> + <input type="submit" name="confirm_submit" value="<{$smarty.const._SUBMIT}>" /> + <{/if}> + <input type="button" name="confirm_back" value="<{$smarty.const._CANCEL}>" onclick="javascript:history.go(-1);" /> + </form> +</div> Index: xoops2jp/html/modules/base/admin/templates/legacy_xoops_result.html diff -u /dev/null xoops2jp/html/modules/base/admin/templates/legacy_xoops_result.html:1.1.2.1 --- /dev/null Wed Jan 25 12:44:20 2006 +++ xoops2jp/html/modules/base/admin/templates/legacy_xoops_result.html Wed Jan 25 12:44:20 2006 @@ -0,0 +1,12 @@ +<div class="resultMsg"> + <{if $title}> + <h4><{$title}></h4> + <{/if}> + <{if is_array($message)}> + <{foreach item=msg from=$message}> + <{$msg|escape}><br/> + <{/foreach}> + <{else}> + <{$message|escape}> + <{/if}> +</div> Index: xoops2jp/html/modules/base/admin/templates/legacy_xoops_error.html diff -u /dev/null xoops2jp/html/modules/base/admin/templates/legacy_xoops_error.html:1.1.2.1 --- /dev/null Wed Jan 25 12:44:20 2006 +++ xoops2jp/html/modules/base/admin/templates/legacy_xoops_error.html Wed Jan 25 12:44:20 2006 @@ -0,0 +1,12 @@ +<div class="errorMsg"> + <{if $title}> + <h4><{$title}></h4> + <{/if}> + <{if is_array($message)}> + <{foreach item=msg from=$message}> + <{$msg|escape}><br/> + <{/foreach}> + <{else}> + <{$message|escape}> + <{/if}> +</div>