Yes there is.. wel, it's not exactly easy.
backup /include/functions.php
Edit the draw_search_sites function, which starts around line 1347
Near lines 1402-1414, you should see where the country flag image tag is created
| Code: |
$htmlsrc .= "<img border=\"1\" src=\"./images/flags/" . $sites_array[country] . "\"";
$htmlsrc .= "hspace=\"5\" alt=\"";
$short_entry = eregi_replace(".gif", "", $sites_array[country]);
$short_entry = eregi_replace("_", " ", $short_entry);
$htmlsrc .= $short_entry . "\" title=\"" . $short_entry . "\">";
|
Replace with
| Code: |
$htmlsrc .="<img border=\"0\" align=\"top\"
src=http://open.thumbshots.org/image.pxf?url=".
urlencode($sites_array["site_url"]) .">";
|
And that should do it