Thanks for supplying the detailed explanation of what is happening.
Odd that Internet explorer 8 doesn't treat a relative link correctly when previous versions did. I suppose the fix for all browsers is a full URL to out.php
Editing /include/unctions.php file, locate both instances of out.php,
One near line # 1234
| Code: |
<a target=\"blank\" href=./out.php?ID=" . $sites_array[site_id] . ">";
|
and edit the href portion to include http:// and your domain name so it looks like this.
| Code: |
<a target=\"blank\" href=http://www,yoursite.com/out.php?ID=" . $sites_array[site_id] . ">";
|
Double check that the resulting URL does indeed point to the out.php file
Further down, in the search results function, locate near line # 1416
| Code: |
$htmlsrc .= "<a class=\"siteName\" href=\"out";
|
again modify to include http:// and your domain name
| Code: |
$htmlsrc .= "<a class=\"siteName\" href=\"out";
|
| Code: |
$htmlsrc .= "<a class=\"siteName\" href=\"http://www.yourdomain.com/out";
|
and that should do it.. but to be honest.. this is really a bug in IE8, it either disregards the BASE HREF in the head tag of the page, or doesn't understand what
./filename means, or possibly both.