here is another regex that needs to be added to _media_flickr_media_parse in media_flickr.utilities.inc
'@flickr\.com/photos/([0-9A-Za-z\@\&\$_-]+)/([0-9]+)/in/pool-([0-9A-Za-z\@\&\$_-]+)@i',
with added regex:
function _media_flickr_media_parse($url, $options = array()) {
// The following are single images.
$patterns = array(
'@flickr\.com/photos/([0-9A-Za-z\@\&\$_-]+)/([0-9]+)/in/photostream@i',
'@flickr\.com/photos/([0-9A-Za-z\@\&\$_-]+)/([0-9]+)/in/set-([0-9]+)@i',
'@flickr\.com/photos/([0-9A-Za-z\@\&\$_-]+)/([0-9]+)/?$@i',
'@flickr\.com/photos/([0-9A-Za-z\@\&\$_-]+)/([0-9]+)/in/pool-([0-9A-Za-z\@\&\$_-]+)@i',
);
when i get time i will create a patch to do this
Comments
Comment #1
ransom commentedsubscribe
Comment #2
ransom commentedDon't look like a normal patch but done with git diff *shrug*
Comment #3
Leeteq commentedMedia 7.x-1rc was just released, time to get this one in?
Comment #4
steinmb commentedTested OK. Adds support to grab images from a Flickr group pool. Example, adding pictures from https://www.flickr.com/groups/drupalcon_london
Patch rolled against 7.x-2.x thought should also be added to 7.x-1.x.
Comment #7
steinmb commented