Commit 369261c2537f5a6a6835b2f32f5a11eca0145032
1 parent
75743b61
fix
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
backend/config/params.php
frontend/views/gallery/index.php
... | ... | @@ -22,9 +22,9 @@ |
22 | 22 | |
23 | 23 | <figure class="reviews_gallery gallery_txt"> |
24 | 24 | |
25 | - <a href="<?=$gallery->image->getUrl()?>" itemprop="contentUrl" data-size="<?= getimagesize( | |
26 | - $gallery->image->getPath() | |
27 | - )[ 0 ] ?>x<?= getimagesize($gallery->image->getPath() | |
25 | + <a href="<?=$gallery->image->getUrl()?>" itemprop="contentUrl" | |
26 | + data-size="<?= getimagesize( $gallery->image->getPath())[ 0 ] ?>x | |
27 | + <?= getimagesize($gallery->image->getPath() | |
28 | 28 | )[ 1 ] ?>"> |
29 | 29 | <figcaption class="image_figcapture figcaption_h_40px" |
30 | 30 | > <?= $gallery->language->title; ?></figcaption> | ... | ... |