diff --git a/lib/WebGUI/Operation/Help.pm b/lib/WebGUI/Operation/Help.pm index 81178fa6a..17a540807 100644 --- a/lib/WebGUI/Operation/Help.pm +++ b/lib/WebGUI/Operation/Help.pm @@ -92,7 +92,7 @@ sub www_viewHelpIndex { my $output = '
| '; my $halfway = round($i/2); $i = 0; - @helpIndex = sort { $a->[2] <=> $b->[2] } @helpIndex; + @helpIndex = sort { $a->[2] cmp $b->[2] } @helpIndex; foreach my $helpEntry (@helpIndex) { my ($namespace, $id, $title) = @{ $helpEntry }; $output .= ''; |