3
0
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:
snipe
2016-09-26 22:35:51 -07:00
parent 7d272e3c96
commit b6cc7e7c14
4 changed files with 7 additions and 7 deletions

View File

@ -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();