Gossamer Forum
Home : Products : Links 2.0 : Customization :

modifying category_clean

Quote Reply
modifying category_clean
Hi, is it possible to change category_clean form say widgets/blue widgets to blue widgets/widgets?
Quote Reply
Re: [garrynz] modifying category_clean In reply to
Well I figured it out, which I should of tried before posting here, yeah yeah lazy :). I am using what Stealth suggested @ http://www.gossamer-threads.com/..._title_linked_P94967 to change / to ::

So here is my new sub build_clean in db_utils.pl

Code:
sub build_clean {
# --------------------------------------------------------
# Formats a category name for displaying.
my ($input) = shift;
$input =~ s/_/ /g;
$input =~ s,/, :: ,g;
@reorder = split(/::/, $input);
$input = join(" :: ",reverse@reorder);
return $input;
}

Last edited by:

garrynz: May 11, 2005, 4:21 AM