Okay for once I have solved a problem. :-) At least it works for me with WordPress 2.9.2
Replace this code in flickrrss.php
if(preg_match('<img src="([^"]*)" [^/]*/>', $item['description'],$imgUrlMatches)) {
continue;
}
$baseurl = str_replace("_m.jpg", "", $imgUrlMatches[1]);
With:
// Hack to switch regular expression for 2.9.2
$pattern = '<img src="([^"]*)" [^/]*/>';
if(!preg_match($pattern, $item['description'], $imgUrlMatches)) {
continue;
}
$url_array = explode(' ',$imgUrlMatches[1]);
$baseurl = str_replace("_m.jpg", "", $url_array[0]);
You'll find it around line 150.
This is similar to what was said in a previous post regarding wordpress 2.8.5.
It's NOT perfect as it is a hack, but at least my images are working now. I hope it works for you.