Skip to content

Commit

Permalink
Fixed mislabeled JSON in API.
Browse files Browse the repository at this point in the history
  • Loading branch information
aryamccarthy committed Dec 12, 2014
1 parent 23319e1 commit cc4f4b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Web_App/API/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
$book['title'] = $row['title'];
$book['author'] = $row['author'];
$book['description'] = $row['description'];
$book['isbn_num'] = $row['isbn_num'];
$book['isbn'] = $row['isbn_num'];
$book['thumbnail'] = $row['image_link'];
array_push($books, $book);
}
Expand Down

0 comments on commit cc4f4b2

Please sign in to comment.