Fix test
This commit is contained in:
parent
2c134c5229
commit
39907103f8
1 changed files with 1 additions and 2 deletions
|
@ -4769,13 +4769,12 @@ function prepare_photo_data($type, $scale, $photo_id)
|
||||||
// added allow_cid, allow_gid, deny_cid, deny_gid to output as string like stored in database
|
// added allow_cid, allow_gid, deny_cid, deny_gid to output as string like stored in database
|
||||||
// clients needs to convert this in their way for further processing
|
// clients needs to convert this in their way for further processing
|
||||||
$r = DBA::toArray(DBA::p(
|
$r = DBA::toArray(DBA::p(
|
||||||
"SELECT %s `resource-id`, `created`, `edited`, `title`, `desc`, `album`, `filename`,
|
"SELECT $data_sql `resource-id`, `created`, `edited`, `title`, `desc`, `album`, `filename`,
|
||||||
`type`, `height`, `width`, `datasize`, `profile`, `allow_cid`, `deny_cid`, `allow_gid`, `deny_gid`,
|
`type`, `height`, `width`, `datasize`, `profile`, `allow_cid`, `deny_cid`, `allow_gid`, `deny_gid`,
|
||||||
MIN(`scale`) AS `minscale`, MAX(`scale`) AS `maxscale`
|
MIN(`scale`) AS `minscale`, MAX(`scale`) AS `maxscale`
|
||||||
FROM `photo` WHERE `uid` = ? AND `resource-id` = ? $scale_sql GROUP BY
|
FROM `photo` WHERE `uid` = ? AND `resource-id` = ? $scale_sql GROUP BY
|
||||||
`resource-id`, `created`, `edited`, `title`, `desc`, `album`, `filename`,
|
`resource-id`, `created`, `edited`, `title`, `desc`, `album`, `filename`,
|
||||||
`type`, `height`, `width`, `datasize`, `profile`, `allow_cid`, `deny_cid`, `allow_gid`, `deny_gid`",
|
`type`, `height`, `width`, `datasize`, `profile`, `allow_cid`, `deny_cid`, `allow_gid`, `deny_gid`",
|
||||||
$data_sql,
|
|
||||||
local_user(),
|
local_user(),
|
||||||
$photo_id
|
$photo_id
|
||||||
));
|
));
|
||||||
|
|
Loading…
Reference in a new issue