aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Photos.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-12-21 12:51:19 +0100
committerMario Vavti <mario@mariovavti.com>2018-12-21 12:51:19 +0100
commite34853e19ea10bde7a4dc2e585da3c26d7032bdb (patch)
tree91d07050a9fcbc3f78a8895c317e10daf653d6e6 /Zotlabs/Module/Photos.php
parent6cbdb1b4c3efab01dde14d95ffe28f27b50cac91 (diff)
downloadvolse-hubzilla-e34853e19ea10bde7a4dc2e585da3c26d7032bdb.tar.gz
volse-hubzilla-e34853e19ea10bde7a4dc2e585da3c26d7032bdb.tar.bz2
volse-hubzilla-e34853e19ea10bde7a4dc2e585da3c26d7032bdb.zip
do not add timestamp to the photo src. caching is handled in mod photo now.
Diffstat (limited to 'Zotlabs/Module/Photos.php')
-rw-r--r--Zotlabs/Module/Photos.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php
index b87c586da..3833d5088 100644
--- a/Zotlabs/Module/Photos.php
+++ b/Zotlabs/Module/Photos.php
@@ -988,7 +988,7 @@ class Photos extends \Zotlabs\Web\Controller {
$photo = array(
'href' => z_root() . '/photo/' . $hires['resource_id'] . '-' . $hires['imgscale'] . '.' . $phototypes[$hires['mimetype']],
'title'=> t('View Full Size'),
- 'src' => z_root() . '/photo/' . $lores['resource_id'] . '-' . $lores['imgscale'] . '.' . $phototypes[$lores['mimetype']] . '?f=&_u=' . datetime_convert('','','','ymdhis')
+ 'src' => z_root() . '/photo/' . $lores['resource_id'] . '-' . $lores['imgscale'] . '.' . $phototypes[$lores['mimetype']]
);
if($nextlink)