Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [Andy] Change link URL in Check Duplicates results

Quote Reply
Re: [Andy] Change link URL in Check Duplicates results In reply to
Thanks Andy. It's just knowing which file the code is in that I struggle with.

You were more or less spot on there. The only adjustment that I made was to change
Code:
my $detailed_url = "$CFG->{build_detail_url}/" . $DB->table('Links')->detailed_url( $id ) . $CFG->{build_extension};

to
Code:
my $detailed_url = "$CFG->{build_detail_url}/" . $DB->table('Links')->detailed_url( $id ) ;

because it doubled the extension - 1234.php.php

I also added
Code:
$id - <a href="$detailed_url" target="_blank">$etitle</a> - $cname -
so that I could open multiple links in new windows at the same time to compare them.

Works perfectly thanks.

Last edited by:

MJB: Oct 23, 2009, 3:02 AM
Subject Author Views Date
Thread Change link URL in Check Duplicates results MJB 4619 Oct 22, 2009, 12:13 PM
Thread Re: [MJB] Change link URL in Check Duplicates results
VishalT 4535 Oct 22, 2009, 2:11 PM
Thread Re: [SWDevil.Com] Change link URL in Check Duplicates results
MJB 4538 Oct 22, 2009, 2:55 PM
Thread Re: [MJB] Change link URL in Check Duplicates results
Andy 4520 Oct 23, 2009, 12:55 AM
Thread Re: [Andy] Change link URL in Check Duplicates results
MJB 4554 Oct 23, 2009, 2:59 AM
Post Re: [MJB] Change link URL in Check Duplicates results
Andy 4524 Oct 23, 2009, 3:00 AM