Embedded Media Field

Fix for image_ncck_flickr_extract

  1. function image_ncck_flickr_extract($embed = '') {
  2.   // http://flickr.com/photos/96898796@N00/194727976/
  3.   return array('@flickr\.com/photos/[^/]*/(\d*)@i');
  4. }

Fix for image_ncck_flickr_extract

  1. function image_ncck_flickr_extract($embed = '') {
  2.   // http://flickr.com/photos/96898796@N00/194727976/
  3.   preg_match('@flickr\.com/photos/[^/]*/(\d*)@i', $embed, $matches);
  4.  

image_ncck_flickr_extract

  1. function image_ncck_flickr_extract($embed = '') {
  2.   // http://flickr.com/photos/96898796@N00/194727976/
  3.   if (preg_match('@flickr\.com/photos/([^/]*)/([^/]*)/@i', $embed, $matches)) {
Syndicate content