3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 23:55:33 +00:00

Pass users path to get_src

This commit is contained in:
snipe
2016-07-28 05:49:41 -07:00
parent 9dda0d02ea
commit 14b0a6315f

View File

@ -145,7 +145,7 @@ class UsersController extends Controller
} else {
$user->groups()->sync(array());
}
if (($request->input('email_user') == 1) && ($request->has('email'))) {
// Send the credentials through email
$data = array();
@ -1079,7 +1079,7 @@ class UsersController extends Controller
return redirect()->route('users')->with('error', trans('general.insufficient_permissions'));
} else {
$log = Actionlog::find($fileId);
$file = $log->get_src();
$file = $log->get_src('users');
return Response::download($file);
}
} else {