Skip to content

Commit b8c7413

Browse files
committed
missing default value for last parameter of photosets_getList
1 parent 6a6a805 commit b8c7413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpFlickr.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ function photosets_getInfo ($photoset_id) {
13221322
return $this->parsed_response ? $this->parsed_response['photoset'] : false;
13231323
}
13241324

1325-
function photosets_getList ($user_id = NULL, $page = NULL, $per_page = NULL, $primary_photo_extras) {
1325+
function photosets_getList ($user_id = NULL, $page = NULL, $per_page = NULL, $primary_photo_extras = NULL) {
13261326
/* https://www.flickr.com/services/api/flickr.photosets.getList.html */
13271327
$this->request("flickr.photosets.getList", array("user_id" => $user_id, 'page' => $page, 'per_page' => $per_page, 'primary_photo_extras' => $primary_photo_extras));
13281328
return $this->parsed_response ? $this->parsed_response['photosets'] : false;

0 commit comments

Comments
 (0)