Gossamer Forum
Quote Reply
YahooSubcats
Hi:

The Mel plugin shows the categories for ID order, not alphabetical by name. (when I have imported my categories from Links2 to LinksSQL2.1 the ID numbers have been changed...)

How can I show the categories for alphabetical order in YahooSubcats?

Thanks in advance!

-----------------------
Nomada
Post deleted by Paul In reply to

Last edited by:

Paul: Mar 24, 2002, 11:36 AM
Quote Reply
Re: [Nomada] YahooSubcats In reply to
Try changing the YahooSubcat.pm file to be:

my $table = $DB->table('Category');
$table->select_options('ORDER BY Name');
my $sth=$table->select({'FatherID' => $catid},['Full_Name','Name']);


Add the line in red.


PUGDOG� Enterprises, Inc.

The best way to contact me is to NOT use Email.
Please leave a PM here.
Quote Reply
Re: [pugdog] YahooSubcats In reply to
Thanks Pugdog!! Works fine!!

-----------------------
Nomada