このコミットが含まれているのは:
テクニカル諏訪子 2020-10-07 19:53:50 +09:00
コミット 45a468310b
1個のファイルの変更3行の追加3行の削除

ファイルの表示

@ -89,9 +89,9 @@ class UserController extends Controller {
unset($get->salt);
}
if ($valid['usr_emailshow'] == 0 || $id != $check) unset($get->email);
if ($valid['usr_ipshow'] == 0 || $id != $check) unset($get->profile->ip_address);
if ($valid['usr_canwarn'] == 0 || $id != $check) unset($get->details->strikes);
if ($valid['usr_emailshow'] == 0 && $id != $check) unset($get->email);
if ($valid['usr_ipshow'] == 0 && $id != $check) unset($get->profile->ip_address);
if ($valid['usr_canwarn'] == 0 && $id != $check) unset($get->details->strikes);
return $get;
}