Home : Products : Gossamer Links : Discussions :

Products: Gossamer Links: Discussions: Re: [pshadow] Argh, Help! Dynamic URLs overriding hard coded URLs: Edit Log

Here is the list of edits for this post
Re: [pshadow] Argh, Help! Dynamic URLs overriding hard coded URLs
It's being modified by the code in Links.pm, clean_output. I'll add something for future versions, but for now, you'll have to make the modification to the code. If you've got all the latest updates, then change admin/Links.pm (around line 577):
Code:
if ($url =~ m/^\Q$CFG->{build_static_url}\E/) {
$begin .= $url;
}
to:
Code:
if ($url =~ m/^(?:\Q$CFG->{build_static_url}\E|\Qhttp://www.mydomain.com/includes/\E)/) {
$begin .= $url;
}

Adrian

Last edited by:

brewt: Nov 28, 2005, 10:20 PM

Edit Log: