Gossamer Forum
Quote Reply
All Links on one page
Hi

Few versions back we used the following global to list all links in one page.. this is no longer working with this version.. (getting internal error).

Can someone please point us to what is wrong..

sub {
# Displays all links on one page.
my ($output,$sth,$link);
my $search_db = $DB->table('Links');
$search_db->select_options ('ORDER BY ID DESC');
$sth = $search_db->select ( { isValidated => 'Yes' });
while ($link = $sth->fetchrow_hashref) {
$output .= Links::SiteHTML::display ('link_short', $link);
}
return $output;
}
Regards
KaTaBd

Users plug In - Multi Search And Remote Search plug in - WebRing plug in - Muslims Directory
Subject Author Views Date
Thread All Links on one page katabd 3671 Oct 21, 2008, 5:30 AM
Thread Re: [katabd] All Links on one page
Andy 3539 Oct 21, 2008, 6:51 AM
Post Re: [Andy] All Links on one page
katabd 3502 Oct 21, 2008, 6:12 PM