569,597d568
< }
< 
< /** 
<  * @param $nsid
<  *   nsid of the group whose pool url will be returned
<  * @return 
<  *   The URL portion of the response from the flickr method flickr.urls.getGroup
<  */
< function flickr_urls_get_group($nsid)
< {
<   $response = flickr_request('flickr.urls.getGroup', array('group_id' => $nsid));
<   if($response)
<     return $response['group']['url'];
<     
<   return FALSE;
< }
< 
< /**
<  * @param $nsid
<  *   nsid of the user whose photostream url will be returned
<  * @return unknown_type
<  */
< function flickr_urls_get_user_photos($nsid)
< {
<   $response = flickr_request('flickr.urls.getUserPhotos', array('user_id' => $nsid));
<   if($response)
<     return $response['user']['url'];
<     
<   return FALSE;
