Skip to content

Commit bc4f209

Browse files
committed
Merge pull request dan-coulter#17 from mistic100/photosets.getList
missing default value for last parameter of photosets_getList
2 parents d40348e + b8c7413 commit bc4f209

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
@@ -1340,7 +1340,7 @@ function photosets_getInfo ($photoset_id) {
13401340
return $this->parsed_response ? $this->parsed_response['photoset'] : false;
13411341
}
13421342

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

0 commit comments

Comments
 (0)