1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Fix sorting vendors by date created

This commit is contained in:
Hillel Coren 2017-08-16 10:56:28 +03:00
parent d63cbb237c
commit 35562077c8
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class VendorDatatable extends EntityDatatable
},
],
[
'client_created_at',
'created_at',
function ($model) {
return Utils::timestampToDateString(strtotime($model->created_at));
},

View File

@ -2007,7 +2007,7 @@ $LANG = array(
'toggle_menu' => 'Toggle Menu',
'new_...' => 'New ...',
'list_...' => 'List ...',
'created_at' => 'Created',
'created_at' => 'Date Created',
'contact_us' => 'Contact Us',
'support_forum' => 'Support Forum',
'user_guide' => 'User Guide',