Hmm.. this not make sense!
sub {
# Displays new links on home page.
my ($output,$sth,$link);
my $search_db = $DB->table('Links');
$search_db->select_options ('ORDER BY Add_Date DESC Limit 10000');
$sth = $search_db->select ( { isValidated => 'Yes' });
while ($link = $sth->fetchrow_hashref) {
$output .= Links::SiteHTML::display ('link1', $link);
}
return $output;
}
Using ('link', $link);
link.html = <a href="<%detailed_url%>"><%Title%></a>
is OK.
Using ('home_link', $link);
home_link.html = <a href="<%detailed_url%>"><%Title%></a>
is BAD!
Unknown Tag: 'detailed_url'
--------------------------------
Privacy Software
sub {
# Displays new links on home page.
my ($output,$sth,$link);
my $search_db = $DB->table('Links');
$search_db->select_options ('ORDER BY Add_Date DESC Limit 10000');
$sth = $search_db->select ( { isValidated => 'Yes' });
while ($link = $sth->fetchrow_hashref) {
$output .= Links::SiteHTML::display ('link1', $link);
}
return $output;
}
Using ('link', $link);
link.html = <a href="<%detailed_url%>"><%Title%></a>
is OK.
Using ('home_link', $link);
home_link.html = <a href="<%detailed_url%>"><%Title%></a>
is BAD!
Unknown Tag: 'detailed_url'

--------------------------------
Privacy Software