# 2022/04/25 17:53:29 : Generate from 'skel/login_auth.html'; #------------------------------------------------------------------------------ # [WARNING] Don't edit this file. If you edit this, will be occoued error. #------------------------------------------------------------------------------ Version=1.01 165087655016508763501sub { my $R = shift; my $O = shift; my $L = shift; my $v = $R->{v}; $_[0] = \$v; $v->{title}="ログイン承認"; if ($R->{Auth}->{ok}) { $$L=6; ($R->{Auth}->{auto}&&$v->{v2conf}) && $R->redirect(($R->{myself}.'?system/v2conv')); $$L=7; $R->{Auth}->{auto} && $R->redirect(($R->{myself}.'?user/add')); $$L=8; ($R->{Auth}->{isadmin}&&$v->{require_update}) && $R->redirect(($R->{myself}.'?menu')); $R->{url}=($v->{path_blogid} ? $v->{thisurl} : $v->{myself3}); $$L=11; $R->redirect($R->{url}); } $$L=15; $R->jump('_sub/error_message','Cookieが有効になっているか確認してください'); $R->{Break} && return; } 000