Nope, that is an oversite. This script evolved from old school methods
of index.php?BLAH=BLAH While I converted it to use standard URLS for category navigation, I overlooked the related category links.
You can edit the include/related.php file with any plain text editor
around line #59, locate ...
| Code: |
$htmlsrc .= "<a class=\"regularText\" href=\"index.php?";
$htmlsrc .= session_name() . "=" . session_id() . "&PID=";
$htmlsrc .= $id_array[0] . "\">";
|
Replace those 3 lines with this one
| Code: |
$htmlsrc .= "<a class=\"regularText\" href=\"/links/directory/". $id_array[0] . ".html\">";
|
Note I've hard coded in your installation directory "links"