I've noticed that line 246 in theme_ip2cc_flag:
function theme_ip2cc_flag($co, $addr = '') {
...
return "<img src=\"$src\" ".drupal_attributes($attribs)." />";
means URLs get generated as relative which causes not found errors for me - I fixed it with:
return "<img src=\"/$src\" ".drupal_attributes($attribs)." />";
Comments
Comment #1
sugree commentedI fixed this by using `theme_image` instead. Hopefully it works for you.
Comment #2
csc4 commentedEven better solution - thanks.
Comment #3
(not verified) commented