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{
},
- 1 => q{
},
- 2 => q{
},
- 3 => q{
},
- 4 => q{
},
- 5 => q{
},
+ 0 => q{
},
+ 1 => q{
},
+ 2 => q{
},
+ 3 => q{
},
+ 4 => q{
},
+ 5 => q{
},
);
return \%options;
}