Gossamer Forum
Quote Reply
Re: [gotze] Sorting In reply to
Hi
I'm using your sub
Code:
sub {
my $category = $DB->table('Category');
$category->select_options('ORDER BY Name');
my $sth = $category->select( ['Has_New_Links','Number_of_Links','Name','Full_Name'] );
my @cats;
while (my $cat = $sth->fetchrow_hashref) {
$cat->{URL} = "$CFG->{build_root_url}/" . $category->as_url($cat->{Full_Name}) . "/$CFG->{build_index}";
push @cats, $cat;
}
return { new_categories => \@cats };
}

and I'm calling it like this
Code:
<%tags%>
<%loop new_categories%>
<%if Number_of_Links > 50 or Has_New_Links eq Yes%>
<big>
<a href="/<%Full_Name%>"><%Name%></a>
</big>
<%if Number_of_Links < 50 or > 25%>
<a href="/<%Full_Name%>"><%Name%></a>
<%else%>
<small>
<a href="/<%Full_Name%>"><%Name%></a>
</small>
<%endif%>
<%endloop%>

I'm getting an output, BUT some the url of all links with two or more words and spaces between are without underscore _ ???
Does anyone know how to fix this?

Thanks
Matthias

Matthias
gpaed.de
Subject Author Views Date
Thread Active categories gotze 16729 Apr 17, 2005, 4:43 AM
Thread Re: [gotze] Active categories
Alba 15887 Apr 17, 2005, 5:33 AM
Thread Re: [Alba] Active categories
gotze 15927 Apr 17, 2005, 5:56 AM
Post Re: [gotze] Active categories
Alba 15852 Apr 17, 2005, 6:33 AM
Thread Active categories global
gotze 15815 Apr 23, 2005, 1:26 PM
Thread Re: [gotze] Active categories global
gotze 15952 Apr 23, 2005, 1:36 PM
Post Re: [gotze] Active categories global
gotze 15807 May 7, 2005, 7:00 PM
Thread Re: [gotze] Active categories
brewt 15834 May 9, 2005, 7:47 PM
Post Re: [brewt] Active categories
Payooo 15720 May 9, 2005, 11:47 PM
Thread Re: [brewt] Active categories
gotze 15795 May 10, 2005, 12:35 AM
Thread Re: [gotze] Active categories
brewt 15825 May 10, 2005, 12:47 AM
Post Re: [brewt] Active categories
Payooo 15757 May 10, 2005, 12:59 AM
Thread Re: [brewt] Active categories
gotze 15806 May 10, 2005, 1:04 AM
Thread Re: [gotze] Active categories
brewt 15777 May 10, 2005, 1:20 AM
Thread Re: [brewt] Active categories
brewt 15676 May 10, 2005, 1:23 AM
Thread Sorting
gotze 15766 May 10, 2005, 7:21 AM
Thread Re: [gotze] Sorting
Matthias70 15300 Sep 25, 2007, 1:48 PM
Thread Re: [Matthias70] Sorting
Andy 15356 Sep 26, 2007, 6:35 AM
Post Re: [Andy] Sorting
Matthias70 15264 Sep 26, 2007, 8:56 AM
Thread Re: [Andy] Sorting
Andy 15302 Sep 26, 2007, 9:09 AM
Thread Re: [Andy] Sorting
Matthias70 15268 Sep 26, 2007, 9:47 AM
Thread Re: [Matthias70] Sorting
Andy 15287 Sep 26, 2007, 9:51 AM
Thread Re: [Andy] Sorting
Matthias70 15236 Sep 26, 2007, 10:01 AM
Thread Re: [Matthias70] Sorting
Matthias70 15286 Sep 26, 2007, 10:24 AM
Thread Re: [Matthias70] Sorting
Matthias70 6927 Sep 26, 2007, 12:25 PM
Thread Re: [Matthias70] Sorting
Andy 6919 Sep 27, 2007, 1:03 AM
Thread Re: [Andy] Sorting
Matthias70 6946 Sep 27, 2007, 5:38 AM
Thread Re: [Matthias70] Sorting
Jesus 6861 Oct 2, 2007, 2:27 PM
Thread Re: [Jesus] Sorting
Matthias70 6888 Oct 2, 2007, 3:11 PM
Post Re: [Matthias70] Sorting
Jesus 6815 Oct 2, 2007, 11:11 PM
Thread Re: [Matthias70] Sorting
Matthias70 6690 Apr 13, 2008, 11:39 AM
Thread Re: [Matthias70] Sorting
Andy 6730 Apr 13, 2008, 12:03 PM
Thread Re: [Andy] Sorting
Matthias70 6763 Apr 13, 2008, 12:41 PM
Thread Re: [Matthias70] Sorting
Andy 6754 Apr 13, 2008, 1:29 PM
Thread Re: [Andy] Sorting
Matthias70 6690 Apr 13, 2008, 2:17 PM
Post Re: [Matthias70] Sorting
Andy 6659 Apr 14, 2008, 12:15 AM
Post Re: [brewt] Active categories
brewt 15706 May 10, 2005, 12:57 AM