Minahito
minah****@users*****
2006年 11月 10日 (金) 20:30:23 JST
Index: xoops2jp/html/modules/user/templates/user_userinfo.html diff -u xoops2jp/html/modules/user/templates/user_userinfo.html:1.1.2.16.2.3 xoops2jp/html/modules/user/templates/user_userinfo.html:1.1.2.16.2.4 --- xoops2jp/html/modules/user/templates/user_userinfo.html:1.1.2.16.2.3 Sat Nov 4 17:09:01 2006 +++ xoops2jp/html/modules/user/templates/user_userinfo.html Fri Nov 10 20:30:23 2006 @@ -1,11 +1,11 @@ -<{if $user_ownpage == true && $enableSelfDelete == true}> +<{if $user_ownpage == true && $enableSelfDelete == true && $xoops_isadmin == false}> <div style="text-align:right;"> - <a href="<{$smarty.const.XOOPS_URL}>/modules/user/index.php?action=UserDelete"><{$smarty.const._MD_USER_LANG_DELACCOUNT}></a> + <a href="<{$xoops_url}>/user.php?op=delete"><{$smarty.const._MD_USER_LANG_DELACCOUNT}></a> </div> <{elseif $xoops_isadmin == true}> <div style="text-align:right;"> - <a href="<{$smarty.const.XOOPS_URL}>/modules/user/admin/index.php?action=UserEdit&uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_EDITPROFILE}></a> - - <a href="<{$smarty.const.XOOPS_URL}>/modules/user/admin/index.php?action=UserDelete&uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_DELACCOUNT}></a> + <a href="<{$xoops_url}>/edituser.php?uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_EDITPROFILE}></a> - + <a href="<{$xoops_url}>/modules/user/admin/index.php?action=UserDelete&uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_DELACCOUNT}></a> </div> <{/if}> @@ -22,7 +22,7 @@ <{if $user_ownpage == true}> <tr> <td class="head" colspan="2" style="text-align:center;"> - <a href="<{$smarty.const.XOOPS_URL}>/modules/user/index.php?action=EditUser&uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_EDITPROFILE}></a> + <a href="<{$xoops_url}>/edituser.php?uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_EDITPROFILE}></a> </td> </tr> <{/if}> @@ -35,7 +35,7 @@ <img src="<{$smarty.const.XOOPS_URL}>/modules/user/images/no_avatar.gif" alt="No Avatar" title="No Avatar" /> <{/if}> <{if $user_ownpage == true}> - <br /><a href="<{$smarty.const.XOOPS_URL}>/modules/user/index.php?action=AvatarEdit&uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_AVATAR_EDIT}></a> + <br /><a href="<{$xoops_url}>/edituser.php?op=avatarform&uid=<{$thisUser->getShow('uid')}>"><{$smarty.const._MD_USER_LANG_AVATAR_EDIT}></a> <{/if}> </td> </tr> Index: xoops2jp/html/modules/user/templates/user_delete.html diff -u xoops2jp/html/modules/user/templates/user_delete.html:1.1.2.2.2.1 xoops2jp/html/modules/user/templates/user_delete.html:1.1.2.2.2.2 --- xoops2jp/html/modules/user/templates/user_delete.html:1.1.2.2.2.1 Sun Oct 15 22:11:33 2006 +++ xoops2jp/html/modules/user/templates/user_delete.html Fri Nov 10 20:30:23 2006 @@ -10,7 +10,7 @@ <div class='confirmMsg'> <h4><{$self_delete_message|nl2br}></h4> - <form method="post" action="<{$action|escape}>"> + <form method="post" action="#"> <{xoops_token form=$actionForm}> <input type="submit" value="<{$smarty.const._DELETE}>" /> <input type="button" name="confirm_back" value="<{$smarty.const._CANCEL}>" onclick="javascript:history.go(-1);" /> Index: xoops2jp/html/modules/user/templates/user_edituser.html diff -u xoops2jp/html/modules/user/templates/user_edituser.html:1.1.2.12.2.4 xoops2jp/html/modules/user/templates/user_edituser.html:1.1.2.12.2.5 --- xoops2jp/html/modules/user/templates/user_edituser.html:1.1.2.12.2.4 Sat Nov 4 17:08:45 2006 +++ xoops2jp/html/modules/user/templates/user_edituser.html Fri Nov 10 20:30:23 2006 @@ -1,5 +1,5 @@ <div> -<a href="./index.php?action=UserInfo&uid=<{$actionForm->get('uid')}>"><{$smarty.const._MD_USER_LANG_PROFILE}></a> +<a href="<{$xoops_url}>/userinfo.php?uid=<{$actionForm->get('uid')|escape}>"><{$smarty.const._MD_USER_LANG_PROFILE}></a> <span style="font-weight:bold;">»»</span> <{$smarty.const._MD_USER_LANG_EDITPROFILE}> </div> @@ -13,7 +13,7 @@ </div> <{/if}> -<form action="./index.php?action=EditUser" method="post"> +<form action="#" method="post"> <{xoops_token form=$actionForm}> <{xoops_input name=uid type=hidden value=$actionForm->get('uid')}> <table class="outer" cellspacing="1" width="100%"> Index: xoops2jp/html/modules/user/templates/user_default.html diff -u xoops2jp/html/modules/user/templates/user_default.html:1.1.2.5 xoops2jp/html/modules/user/templates/user_default.html:1.1.2.5.2.1 --- xoops2jp/html/modules/user/templates/user_default.html:1.1.2.5 Fri Aug 18 14:35:29 2006 +++ xoops2jp/html/modules/user/templates/user_default.html Fri Nov 10 20:30:23 2006 @@ -1,4 +1,4 @@ -<form action="<{$smarty.const.XOOPS_URL}>/user.php" method="post"> +<form action="<{$xoops_url}>/user.php" method="post"> <input type="hidden" name="op" value="login" /> <input type="hidden" name="xoops_redirect" value="<{$redirect_page}>" /> <table class="outer"> Index: xoops2jp/html/modules/user/templates/user_avatar_edit.html diff -u xoops2jp/html/modules/user/templates/user_avatar_edit.html:1.1.2.14.2.1 xoops2jp/html/modules/user/templates/user_avatar_edit.html:1.1.2.14.2.2 --- xoops2jp/html/modules/user/templates/user_avatar_edit.html:1.1.2.14.2.1 Fri Nov 10 15:19:37 2006 +++ xoops2jp/html/modules/user/templates/user_avatar_edit.html Fri Nov 10 20:30:23 2006 @@ -1,5 +1,5 @@ <div> -<a href="./index.php?action=UserInfo&uid=<{$actionForm->get('uid')|escape}>"><{$smarty.const._MD_USER_LANG_PROFILE}></a> +<a href="<{$xoops_url}>/userinfo.php?uid=<{$actionForm->get('uid')|escape}>"><{$smarty.const._MD_USER_LANG_PROFILE}></a> <span style="font-weight:bold;">»»</span> <{$smarty.const._MD_USER_LANG_AVATAR_EDIT}> </div> @@ -14,7 +14,7 @@ </div> <{/if}> -<form action="./index.php?action=AvatarEdit" method="post" enctype="multipart/form-data"> +<form action="<{$xoops_url}>/edituser.php?op=avatarupload" method="post" enctype="multipart/form-data"> <{xoops_token form=$actionForm}> <{xoops_input type=hidden name=uid value=$actionForm->get('uid')}> <table class="outer"> @@ -53,7 +53,7 @@ </form> <{/if}> -<form method="post" action="index.php?action=AvatarSelect"> +<form method="post" action="<{$xoops_url}>/edituser.php?op=avatarchoose"> <{xoops_token form=$avatarSelectForm}> <{xoops_input type=hidden name=uid value=$avatarSelectForm->get('uid')}> <table class="outer" style="text-align:center;"> Index: xoops2jp/html/modules/user/templates/user_register_form.html diff -u xoops2jp/html/modules/user/templates/user_register_form.html:1.1.2.11.2.1 xoops2jp/html/modules/user/templates/user_register_form.html:1.1.2.11.2.2 --- xoops2jp/html/modules/user/templates/user_register_form.html:1.1.2.11.2.1 Mon Oct 16 00:29:46 2006 +++ xoops2jp/html/modules/user/templates/user_register_form.html Fri Nov 10 20:30:23 2006 @@ -8,7 +8,7 @@ </div> <{/if}> -<form action="index.php?action=UserRegister" method="post"> +<form action="#" method="post"> <{xoops_token form=$actionForm}> <table class="outer" width="100%"> <tr> Index: xoops2jp/html/modules/user/templates/user_lostpass.html diff -u xoops2jp/html/modules/user/templates/user_lostpass.html:1.1.2.7 xoops2jp/html/modules/user/templates/user_lostpass.html:1.1.2.7.2.1 --- xoops2jp/html/modules/user/templates/user_lostpass.html:1.1.2.7 Fri Aug 18 14:35:29 2006 +++ xoops2jp/html/modules/user/templates/user_lostpass.html Fri Nov 10 20:30:23 2006 @@ -8,7 +8,7 @@ </div> <{/if}> -<form action="index.php?action=LostPass" method="post"> +<form action="#" method="post"> <{xoops_token form=$actionForm}> <table class="outer"> <tr> Index: xoops2jp/html/modules/user/templates/user_register_confirm.html diff -u xoops2jp/html/modules/user/templates/user_register_confirm.html:1.1.2.7.2.1 xoops2jp/html/modules/user/templates/user_register_confirm.html:1.1.2.7.2.2 --- xoops2jp/html/modules/user/templates/user_register_confirm.html:1.1.2.7.2.1 Sun Oct 15 22:11:33 2006 +++ xoops2jp/html/modules/user/templates/user_register_confirm.html Fri Nov 10 20:30:23 2006 @@ -1,4 +1,4 @@ -<form action="index.php?action=UserRegister_confirm" method="post"> +<form action="#" method="post"> <table width="100%" class="outer"> <tr> <td class="head"><{$smarty.const._MD_USER_LANG_NICKNAME}></td>