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

Re: [YoYoYoYo] Sorting in YahooSubcats.pm

Quote Reply
Re: [YoYoYoYo] Sorting in YahooSubcats.pm In reply to
Hi,

I'm not sure about this but try changing this:

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


to this:

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

(untested)

--
Matt G
Subject Author Views Date
Thread Sorting in YahooSubcats.pm YoYoYoYo 2310 Oct 8, 2001, 11:51 PM
Post Re: [YoYoYoYo] Sorting in YahooSubcats.pm
Matt G 2199 Oct 9, 2001, 11:24 AM