fix lost $sql_extra in recent sql query changes

This commit is contained in:
marijus 2014-11-15 14:39:36 +01:00
parent ad8668be9e
commit 8b1e83128a

View file

@ -1175,7 +1175,7 @@ function photos_content(&$a) {
$r = q("SELECT p.resource_id, p.id, p.filename, p.type, p.album, p.scale, p.created FROM photo p INNER JOIN
(SELECT resource_id, max(scale) scale FROM photo
WHERE uid=%d AND album != '%s' AND album != '%s'
AND (photo_flags = %d or photo_flags = %d ) group by resource_id) ph
AND (photo_flags = %d or photo_flags = %d ) $sql_extra group by resource_id) ph
ON (p.resource_id = ph.resource_id and p.scale = ph.scale) ORDER by p.created DESC LIMIT %d OFFSET %d",
intval($a->data['channel']['channel_id']),
dbesc('Contact Photos'),