diff --git a/lib/WebGUI/Form/CommentRating.pm b/lib/WebGUI/Form/CommentRating.pm index 6fe72ccfb..fb10e9b16 100644 --- a/lib/WebGUI/Form/CommentRating.pm +++ b/lib/WebGUI/Form/CommentRating.pm @@ -94,13 +94,14 @@ sub getOptions { my %options = (); tie %options, 'Tie::IxHash'; my $url = $self->session->url; + my $pathFragment = 'form/CommentRating'; %options = ( - 0 => q{0}, - 1 => q{1}, - 2 => q{2}, - 3 => q{3}, - 4 => q{4}, - 5 => q{5}, + 0 => q{0}, + 1 => q{1}, + 2 => q{2}, + 3 => q{3}, + 4 => q{4}, + 5 => q{5}, ); return \%options; }