fix translation of auth.logout.fail

This commit is contained in:
printempw 2016-10-06 17:57:07 +08:00
parent f81c405dba
commit a22357d1c6

View File

@ -76,7 +76,7 @@ class AuthController extends Controller
return json(trans('auth.logout.success'), 0);
} else {
return json(trans('auth.logout.failed'), 1);
return json(trans('auth.logout.fail'), 1);
}
}