mirror of
https://github.com/snipe/snipe-it.git
synced 2026-02-14 10:45:38 +00:00
Fixes bug where 12-hour fprmat for hours was used
This commit is contained in:
@ -1028,7 +1028,7 @@ class UsersController extends Controller
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$logaction->note = e(Input::get('notes'));
|
||||
$logaction->target_id = null;
|
||||
$logaction->created_at = date("Y-m-d h:i:s");
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
$logaction->filename = $filename;
|
||||
$logaction->action_type = 'uploaded';
|
||||
$logaction->save();
|
||||
|
||||
Reference in New Issue
Block a user