Use fetch_assoc instead of fetch_array

This commit is contained in:
dixy 2014-03-20 14:52:54 +01:00
parent 0ee9aa5f9c
commit 466296e49b
3 changed files with 4 additions and 9 deletions

View File

@ -146,7 +146,7 @@ function getAlbum($albumID) {
$result = $database->query($query);
$previousPhotoID = "";
$i = 0;
while($row = $result->fetch_array()) {
while($row = $result->fetch_assoc()) {
$return['content'][$row['id']]['id'] = $row['id'];
$return['content'][$row['id']]['title'] = $row['title'];

View File

@ -47,7 +47,7 @@ function search($term) {
// Photos
$result = $database->query("SELECT id, title, tags, sysdate, public, star, album, thumbUrl FROM lychee_photos WHERE title like '%$term%' OR description like '%$term%' OR tags like '%$term%';");
while($row = $result->fetch_array()) {
while($row = $result->fetch_assoc()) {
$return['photos'][$row['id']] = $row;
$return['photos'][$row['id']]['sysdate'] = date('d F Y', strtotime($row['sysdate']));
}

View File

@ -15,14 +15,14 @@ function getPhoto($photoID, $albumID) {
$query = "SELECT * FROM lychee_photos WHERE id = '$photoID' LIMIT 1;";
$result = $database->query($query);
$return = $result->fetch_array();
$return = $result->fetch_assoc();
if ($albumID!='false') {
if ($return['album']!=0) {
$result = $database->query("SELECT public FROM lychee_albums WHERE id = '" . $return['album'] . "';");
$return_album = $result->fetch_array();
$return_album = $result->fetch_assoc();
if ($return_album['public']=="1") $return['public'] = "2";
}
@ -36,11 +36,6 @@ function getPhoto($photoID, $albumID) {
unset($return['album_public']);
// Remove unused items
foreach ($return as $key => $value) {
if (is_int($key)) unset($return[$key]);
}
return $return;
}