From 1bc946f7b55a015fc1f0fd2393bb68af068c82ad Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Fri, 9 Feb 2024 12:17:44 -0600 Subject: [PATCH] Number format image dimensions in artwork listing --- lib/Artwork.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Artwork.php b/lib/Artwork.php index d5ae539b..a8d23589 100644 --- a/lib/Artwork.php +++ b/lib/Artwork.php @@ -267,7 +267,7 @@ class Artwork extends PropertiesBase{ try{ list($imageWidth, $imageHeight) = getimagesize($this->ImageFsPath); if($imageWidth && $imageHeight){ - $this->_Dimensions = $imageWidth . ' × ' . $imageHeight; + $this->_Dimensions = number_format($imageWidth) . ' × ' . number_format($imageHeight); } } catch(Exception){