aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Photos.php
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2017-07-18 13:56:09 +0200
committergit-marijus <mario@mariovavti.com>2017-07-18 13:56:09 +0200
commit08c0d78296d4518a5ece4d6a2c05b9be83580aa8 (patch)
tree88cd4dbce6e8111cc9a924dabb67957f51a4f361 /Zotlabs/Module/Photos.php
parent4728e72d182f78dc2f5768fdb55d1e142fc92129 (diff)
downloadvolse-hubzilla-08c0d78296d4518a5ece4d6a2c05b9be83580aa8.tar.gz
volse-hubzilla-08c0d78296d4518a5ece4d6a2c05b9be83580aa8.tar.bz2
volse-hubzilla-08c0d78296d4518a5ece4d6a2c05b9be83580aa8.zip
issue #827 provide backward compatibility for album links generated in earlier times before the ambiguity of photo album names was solved. This may provide incorrect results if two or more photo albums with the same basename exist in different directories of the file tree; but there is no easy way to solve that ambiguity - which is why the link format changed.
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 d993c481e..18d7abc48 100644
--- a/Zotlabs/Module/Photos.php
+++ b/Zotlabs/Module/Photos.php
@@ -689,7 +689,7 @@ class Photos extends \Zotlabs\Web\Controller {
(SELECT resource_id, max(imgscale) imgscale FROM photo left join attach on folder = '%s' and photo.resource_id = attach.hash WHERE attach.uid = %d AND imgscale <= 4 AND photo_usage IN ( %d, %d ) and is_nsfw = %d $sql_extra GROUP BY resource_id) ph
ON (p.resource_id = ph.resource_id AND p.imgscale = ph.imgscale)
ORDER BY created $order LIMIT %d OFFSET %d",
- dbesc($datum),
+ dbesc($x['hash']),
intval($owner_uid),
intval(PHOTO_NORMAL),
intval(PHOTO_PROFILE),