Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: Pick Link to Modify Template

Quote Reply
Re: Pick Link to Modify Template In reply to
Thanks Eliot,

I found this under sub _list_owned_links in modify.cgi and changed it to get rid of the table tags. This is an awkward piece of hard-coded html. Almost any customization of links.html will cause these tables to break.
Code:
my $output = '<table border=0>';
while (my $link = $sth->fetchrow_hashref) {
$output .= qq~<tr><td><input type=radio name=LinkID value="$link->{ID}"></td><td>~;
$output .= Links::SiteHTML::display('link', $link);
$output .= "</td></tr>";
}
$output .= "</table>";
Safe swoops
Sangiro
http://www.dropzone.com/
Subject Author Views Date
Thread Pick Link to Modify Template sangiro 3295 Feb 11, 2001, 11:49 AM
Thread Re: Pick Link to Modify Template
pugdog 3229 Feb 11, 2001, 2:25 PM
Thread Re: Pick Link to Modify Template
sangiro 3155 Feb 11, 2001, 4:55 PM
Post Re: Pick Link to Modify Template
pugdog 3125 Feb 12, 2001, 12:08 AM
Thread Re: Pick Link to Modify Template
sangiro 3169 Feb 11, 2001, 7:57 PM
Thread Re: Pick Link to Modify Template
Stealth 3149 Feb 11, 2001, 8:04 PM
Thread Re: Pick Link to Modify Template
sangiro 3148 Feb 11, 2001, 8:26 PM
Thread Re: Pick Link to Modify Template
Alex 3118 Feb 12, 2001, 2:34 PM
Post Re: Pick Link to Modify Template
sangiro 3118 Feb 12, 2001, 3:14 PM