=== modified file 'modules/flickr/block/flickr_block.module'
--- modules/flickr/block/flickr_block.module    2008-01-03 03:50:26 +0000
+++ modules/flickr/block/flickr_block.module    2008-01-03 13:54:49 +0000
@@ -193,9 +193,9 @@
 }
 
 function theme_flickr_block_photo($p, $size = NULL) {
-  return theme_flickr_photo($p, $size);
+  return theme('flickr_photo', $p, $size);
 }
 
 function theme_flickr_block_photoset($ps, $owner, $size) {
-  return theme_flickr_photoset($ps, $owner, $size);
+  return theme('flickr_photoset', $ps, $owner, $size);
 }

=== modified file 'modules/flickr/filter/flickr_filter.module'
--- modules/flickr/filter/flickr_filter.module  2008-01-03 03:50:26 +0000
+++ modules/flickr/filter/flickr_filter.module  2008-01-03 13:55:56 +0000
@@ -104,9 +104,9 @@
 }
 
 function theme_flickr_filter_photo($p, $size, $attribs) {
-  return theme_flickr_photo($p, $size, NULL, $attribs);
+  return theme('flickr_photo', $p, $size, NULL, $attribs);
 }
 
 function theme_flickr_filter_photoset($ps, $owner, $size, $attribs) {
-  return theme_flickr_photoset($ps, $owner, $size, $attribs);
+  return theme('flickr_photoset', $ps, $owner, $size, $attribs);
 }

