aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-17 20:45:53 -0700
committerfriendica <info@friendica.com>2014-06-17 20:45:53 -0700
commit8b66329a8f3705e7ccf868093ee2debaa8e4bdca (patch)
tree1d40bd37e30f16fa74d4afdfece5fe1d2cc7f969 /include
parent35d42f86265f9ce9dfaaae0298c35d056d0e9ed8 (diff)
downloadvolse-hubzilla-8b66329a8f3705e7ccf868093ee2debaa8e4bdca.tar.gz
volse-hubzilla-8b66329a8f3705e7ccf868093ee2debaa8e4bdca.tar.bz2
volse-hubzilla-8b66329a8f3705e7ccf868093ee2debaa8e4bdca.zip
add photo count to photo album list
Diffstat (limited to 'include')
-rw-r--r--include/photos.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/photos.php b/include/photos.php
index 65532e6c2..de4a9173a 100644
--- a/include/photos.php
+++ b/include/photos.php
@@ -264,7 +264,7 @@ function photos_albums_list($channel,$observer) {
$sql_extra = permissions_sql($channel_id);
- $albums = q("SELECT distinct album from photo where uid = %d and ( photo_flags = %d or photo_flags = %d ) $sql_extra order by created desc",
+ $albums = q("SELECT count( distinct resource_id ) as total, album from photo where uid = %d and ( photo_flags = %d or photo_flags = %d ) $sql_extra group by album order by created desc",
intval($channel_id),
intval(PHOTO_NORMAL),
intval(PHOTO_PROFILE)
@@ -279,7 +279,8 @@ function photos_albums_list($channel,$observer) {
$ret['success'] = true;
foreach($albums as $k => $album) {
$entry = array(
- 'text' => $album['album'],
+ 'text' => $album['album'],
+ 'total' => $album['total'],
'url' => z_root() . '/photos/' . $channel['channel_address'] . '/album/' . bin2hex($album['album']),
'urlencode' => urlencode($album['album']),
'bin2hex' => bin2hex($album['album']));