From 3bb5511f81a3a2691314c452275f5b110e8843a6 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Wed, 2 Apr 2014 17:36:50 +0200 Subject: [PATCH] Code improvements --- php/modules/album.php | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/php/modules/album.php b/php/modules/album.php index 2f8f0cb..691cc7a 100755 --- a/php/modules/album.php +++ b/php/modules/album.php @@ -38,15 +38,16 @@ function getAlbums($public) { while ($row = $result->fetch_object()) { + $album = array(); + // Info - $return['content'][$row->id]['id'] = $row->id; - $return['content'][$row->id]['title'] = $row->title; - $return['content'][$row->id]['public'] = $row->public; - $return['content'][$row->id]['sysdate'] = date('F Y', strtotime($row->sysdate)); + $album['id'] = $row->id; + $album['title'] = $row->title; + $album['public'] = $row->public; + $album['sysdate'] = date('F Y', strtotime($row->sysdate)); // Password - $return['content'][$row->id]['password'] = false; - if ($row->password!='') $return['content'][$row->id]['password'] = true; + $album['password'] = ($row->password != ''); // Thumbs if (($public&&$row->password=='')||(!$public)) { @@ -55,15 +56,17 @@ function getAlbums($public) { $result2 = $database->query("SELECT thumbUrl FROM lychee_photos WHERE album = '$albumID' ORDER BY star DESC, " . substr($settings['sorting'], 9) . " LIMIT 0, 3"); $k = 0; while ($row2 = $result2->fetch_object()) { - $return['content'][$row->id]["thumb$k"] = $row2->thumbUrl; + $album["thumb$k"] = $row2->thumbUrl; $k++; } } + $return['content'][$row->id] = $album; + } - $return["num"] = $result->num_rows; + $return['num'] = $result->num_rows; return $return;