Setup keywords as a string, not an array ref. Add tests for that.

This commit is contained in:
Colin Kuskie 2010-06-09 18:58:01 -07:00
parent 0578a55419
commit 705f0d49ba
2 changed files with 6 additions and 6 deletions

View file

@ -315,7 +315,7 @@ sub _build_assetKeywords {
my $self = shift;
my $session = $self->session;
my $keywords = WebGUI::Keyword->new($session);
return $keywords->getKeywordsForAsset({asset => $self, asArrayRef => 1 });
return $keywords->getKeywordsForAsset({asset => $self, });
}
around BUILDARGS => sub {