In search I often see brocken links to images.
That is because I switched the forum behavior some time ago ($theme['useicons'])
Better than showing a broken link, I would prefer a "default". for Search, I included a line for this.
(If a more general solution for broken image links would be established in the board software, the better.)
This is my solution...
in dosearch.php, look for
$iconprint = "";
if ($theme['useicons']) {
$iconprint = "<img src ="{$config['images']}/icons/$Icon" alt=".">";
}
replace this by:
$iconprint = "";
if ($theme['useicons']) {
// Hack next line, Default Icon:
if (!$Icon) { $Icon = "book.gif"; }
$iconprint = "<img src ="{$config['images']}/icons/$Icon" alt=".">";
}
Last edited by caymuc; 02/11/2002 7:45 AM.