#22: Changed date on the photo card on the default gallery display to use the app's date format setting

This commit is contained in:
Andy Heathershaw 2017-09-04 20:16:36 +01:00
parent f9bc890de0
commit 56deb6838a
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@
<h4 class="card-title"><a href="{{ $photo->url() }}">{{ $photo->name }}</a></h4>
</div>
<div class="card-footer">
<small class="text-muted"><i class="fa fa-fw fa-calendar"></i> {{ date('Y-m-d H:i', strtotime(!is_null($photo->taken_at) ? $photo->taken_at : $photo->created_at)) }}</small>
<small class="text-muted"><i class="fa fa-fw fa-calendar"></i> {{ date(UserConfig::get('date_format'), strtotime(!is_null($photo->taken_at) ? $photo->taken_at : $photo->created_at)) }}</small>
</div>
</div>
</div>