|
rubenpv
|
 |
« Reply #1 on: February 03, 2010, 09:26:14 AM » |
|
Hello
I?m not really sure about the problem you have, but I had a problem( I think is the same one), with all the links at the bottom like prin friendly, send a friend etc etc
This is the answer that help me to fix it
Find the file within your install of OR here "OR"/listings/include/listing.inc.php
Within my file on line 572 starts like this.....
$display .= '<a href="'.$config['baseurl'].'/index.php?action=searchresults&user_ID='................
You need to replace all instances of
<a href="'.$config['baseurl'].'/index.php?
with
<a href="index.php?
(Simply delete this string - '.$config['baseurl'].'/
which should leave your line 572 similar to this
$display .= '<a href="index.php?action=searchresults&user_ID='.$listing_user_ID.................
I found 6 instances within my file from memory that I changed.
Regards
|