Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

tags not being carried forward

Quote Reply
tags not being carried forward
I am using the following global in include_rightsidebar.html template.

Quote:
sub {
# Displays the featured links on the home page.
my ($output,$sth,$feature);
my $search_db = $DB->table('Links');
$search_db->select_options ('ORDER BY Add_Date DESC');
$sth = $search_db->select ( { isFeature => 'Yes'});
while ($feature= $sth->fetchrow_hashref) {
$output .= Links::SiteHTML::display ('feature', $feature);
}
return $output;
}


It is not recognising the <%detailed_url%> or <%URL%> tag but is recognising the <%Description%> tag.

Is there any reason for this?
Subject Author Views Date
Thread tags not being carried forward Alba 2176 Mar 6, 2006, 7:06 AM
Post Re: [Alba] tags not being carried forward
Alba 2050 Mar 6, 2006, 7:35 AM