diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-12-21 12:51:19 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-12-21 12:51:19 +0100 |
commit | e34853e19ea10bde7a4dc2e585da3c26d7032bdb (patch) | |
tree | 91d07050a9fcbc3f78a8895c317e10daf653d6e6 | |
parent | 6cbdb1b4c3efab01dde14d95ffe28f27b50cac91 (diff) | |
download | volse-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.
-rw-r--r-- | Zotlabs/Module/Photos.php | 2 |
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) |