Changeset 8894
- Timestamp:
- Oct 30, 2008, 8:14:28 PM (12 years ago)
- Location:
- OpenPNE/trunk/webapp/modules/admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp/modules/admin/page/edit_c_admin_config.php
r4933 r8894 13 13 $v['DAILY_NEWS_DAY'] = explode(',', DAILY_NEWS_DAY); 14 14 $this->set($v); 15 16 //外部ログインフォーム用HTML内のアドレス生成 17 //PC版ログインフォーム 18 $absolute = true ; 19 $login_url = openpne_gen_url_head('pc', 'do_o_login', $absolute); 20 $this->set('login_url', $login_url); 21 22 //携帯版ログインフォーム 23 $ktai_login_url = openpne_gen_url_head('ktai', 'do_o_login', $absolute); 24 $ktai_easy_login_url = openpne_gen_url_head('ktai', 'do_o_easy_login', $absolute); 25 $this->set('ktai_login_url', $ktai_login_url); 26 $this->set('ktai_easy_login_url', $ktai_easy_login_url); 15 27 return 'success'; 16 28 } -
OpenPNE/trunk/webapp/modules/admin/templates/edit_c_admin_config.tpl
r8860 r8894 394 394 395 395 ({capture name=pc_html_form}) 396 <form action="({ t_url _html=0 _absolute=1})" method="post">396 <form action="({$login_url})" method="post"> 397 397 <input type="hidden" name="m" value="pc" /> 398 398 <input type="hidden" name="a" value="do_o_login" /> … … 408 408 409 409 ({capture name=ktai_html_form}) 410 <form action="({ t_url _html=0 _absolute=1})" method="post" utn>410 <form action="({$ktai_easy_login_url})" method="post" utn> 411 411 <input type="hidden" name="m" value="ktai"> 412 412 <input type="hidden" name="a" value="do_o_easy_login"> … … 414 414 </form> 415 415 <br> 416 <form action="({ t_url _html=0 _absolute=1})" method="post">416 <form action="({$ktai_login_url})" method="post"> 417 417 <input type="hidden" name="m" value="ktai"> 418 418 <input type="hidden" name="a" value="do_o_login">
Note: See TracChangeset
for help on using the changeset viewer.