View Single Post
Old 01-26-2004, 04:12 AM   #2
TSO
Green Mole
 
Join Date: Jan 2004
Posts: 2
Quote:
Every page on my website has a link to a printer-friendly version of the same page, done with [thispage.php?print=y]
Just started figuring out this case also. After line 412 in "search_function.php" add:
$content['file'] = preg_replace("print=y'si","", $content['file']);
(line before: $url = eregi_replace("([a-z0-9])[/]+... )

This strips "print=y" away. Bad thing is that you get double when searhing searching (those without "print" and those with "print" -> only url is filtered). Lets keep up looking...
TSO is offline   Reply With Quote