Gossamer Forum
Quote Reply
Global Bad Tag
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'


Frown

--------------------------------
Privacy Software
Quote Reply
Re: [BLOOD] Global Bad Tag In reply to
This was asked in the last few days. Do a search for detailed_url in the last two weeks.
Quote Reply
Re: [afinlr] Global Bad Tag In reply to
Thanks!

I missed this in my search

Blush

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