I found an error in hooks/emfield.php on line 84.
function EMMODULE_PROVIDER_extract($embed, $field) {
return array(
'@example\.com/video/(*+)@i'
'@example\.com/rss/video/(*+)@i'
);
}
should be
function EMMODULE_PROVIDER_extract($embed, $field) {
return array(
'@example\.com/video/(*+)@i',
'@example\.com/rss/video/(*+)@i'
);
}
note the coma after the first regex in the array
Comments
Comment #1
aaron commented@cangeceiro: awesome, thanks for the catch!