mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Pass users path to get_src
This commit is contained in:
parent
9dda0d02ea
commit
14b0a6315f
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue