|
From: randy <ra...@ec...> - 2001-04-30 05:18:45
|
I am not sure if this is covered in the archive or not ... I didn't see it
in the last couple of weeks.
In pre3 the dispStory;misc;default the link that is created for stories in
a different section has a hard link to the section directory.
I changed
[% IF magic;
title = "<A
HREF=\"$constants.rootdir/$story.section/\"><FONT
COLOR=\"$user.fg.3\">$section.title</FONT></A>: $story.title";
ELSE;
title = story.title;
END %]
to the following
[% IF magic;
title = "<A
HREF=\"$constants.rootdir/index.pl?section=$story.section\"><FONT
COLOR=\"$user.fg.3\">$section.title</FONT></A>: $story.title";
ELSE;
title = story.title;
END %]
I did the same thing in the light version.
I am new to slashcode so I am not sure this is the correct way to submit
any items like this.
Thank you for your time.
Randy
|