From 372cc0839fbfc86686ca77ea757d8b663cf36c6a Mon Sep 17 00:00:00 2001 From: Andy Heathershaw Date: Mon, 6 Aug 2018 17:02:51 +0100 Subject: [PATCH 1/2] #90: Date created is now displayed on the individual photo page --- resources/views/themes/base/gallery/photo.blade.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/views/themes/base/gallery/photo.blade.php b/resources/views/themes/base/gallery/photo.blade.php index 2cc23eb..e380356 100644 --- a/resources/views/themes/base/gallery/photo.blade.php +++ b/resources/views/themes/base/gallery/photo.blade.php @@ -81,6 +81,11 @@ @endif + + @lang('gallery.date_uploaded') + {{ date(UserConfig::get('date_format'), strtotime($photo->created_at)) }} + + @if (!empty($photo->camera_make)) @lang('gallery.camera_make') From bdfb3067dcf2dab08a961eca5db64fbe6e70d63c Mon Sep 17 00:00:00 2001 From: Andy Heathershaw Date: Mon, 6 Aug 2018 17:06:59 +0100 Subject: [PATCH 2/2] #90: Added language string (mistakenly committed to user profile branch) --- resources/lang/en/gallery.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/gallery.php b/resources/lang/en/gallery.php index 4681e4b..c8991e6 100644 --- a/resources/lang/en/gallery.php +++ b/resources/lang/en/gallery.php @@ -14,6 +14,7 @@ return [ 'camera_software' => 'Camera software:', 'child_albums' => 'more album|more albums', 'date_taken' => 'Date taken:', + 'date_uploaded' => 'Date uploaded:', 'file_name' => 'File name:', 'focal_length' => 'Focal length:', 'focal_length_units' => ':valuemm',