mirror of
https://github.com/standardebooks/web.git
synced 2025-07-08 15:50:29 -04:00
Number format image dimensions in artwork listing
This commit is contained in:
parent
3caea5f708
commit
1bc946f7b5
1 changed files with 1 additions and 1 deletions
|
@ -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){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue