Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Duplication link at new link page

Quote Reply
Duplication link at new link page
Hi
When using the global to show new link, if the link was submit to more then one category it show the link in the page the number of time it submit. So if user submit link to 3 categories in the new link it will display 3 times the same link.
Is there a solution for this:)

The global
sub {
# Displays the Last X new links.
my $new_nr = shift;
my $search_db = $DB->table('Links');
$search_db->select_options ("ORDER BY Add_Date DESC Limit $new_nr");
my $sth = $search_db->select ( { isNew => 'Yes', isValidated => 'Yes' });
my $output;
while (my $link = $sth->fetchrow_hashref) {
$link->{'category_url'} = $CFG->{build_root_url}."/".$link->{'Full_Name'}."/";
$link->{'detailed_url'} = "$CFG->{build_detail_url}/$link->{'ID'}$CFG->{build_extension}";
$output .= Links::SiteHTML::display ('link', $link);
}
return $output;
}
Subject Author Views Date
Thread Duplication link at new link page nir 3919 Sep 5, 2007, 6:17 AM
Thread Re: [nir] Duplication link at new link page
Andy 3790 Sep 5, 2007, 6:29 AM
Thread Re: [Andy] Duplication link at new link page
nir 3782 Sep 5, 2007, 6:55 AM
Thread Re: [nir] Duplication link at new link page
Andy 3815 Sep 5, 2007, 7:14 AM
Thread Re: [Andy] Duplication link at new link page
nir 3780 Sep 5, 2007, 7:42 AM
Post Re: [nir] Duplication link at new link page
Andy 3771 Sep 5, 2007, 7:46 AM