added redirect and migrated site map to article

This commit is contained in:
JT Smith 2004-11-24 19:32:03 +00:00
parent 0ffe4c87ce
commit 8a3e872238
8 changed files with 203 additions and 24 deletions

View file

@ -161,7 +161,7 @@ sub fixUrl {
$parts[0] .= "2";
}
$url = join(".",@parts);
$url = $self->setUrl($url);
$url = $self->fixUrl($url);
}
return $url;
}
@ -328,6 +328,11 @@ sub getIndexerParams {
return {};
}
sub getName {
return WebGUI::International::get('asset','Asset');
}
sub getNextChildRank {
my $self = shift;
my ($lineage) = WebGUI::SQL->quickArray("select max(lineage) from asset where parentId=".quote($self->getId));