Commit info for scoop/lib/Scoop/Comments:

Modified Files:
      Tag: CURRENT
	Format.pm Rate.pm 
Log Message:
Resyncing CURRENT with all of panner's bugfixes. I swear, independent 
development will be happening soon with this. I think I have an excuse. 
--j


Index: Format.pm
===================================================================
RCS file: /cvs/scoop/scoop/lib/Scoop/Comments/Format.pm,v
retrieving revision 1.47
retrieving revision 1.47.2.1
diff -r1.47 -r1.47.2.1
120d119
< 			$user_info .= $edit_user;
180,184c179
< 	my $member;
< 	if ($user->{sub}->{active}) {
< 		$member = $S->{UI}->{BLOCKS}->{"mark_$user->{perm_group}"};
< 		
< 	}
---
> 	my $member = $S->{UI}->{BLOCKS}->{"mark_$user->{perm_group}"};
381d375
< 	my $warn = $S->{UI}->{BLOCKS}->{commentswarning};

Index: Rate.pm
===================================================================
RCS file: /cvs/scoop/scoop/lib/Scoop/Comments/Rate.pm,v
retrieving revision 1.27
retrieving revision 1.27.2.1
diff -r1.27 -r1.27.2.1
88c88,89
< 		$sub_min = $S->{UI}->{VARS}->{hide_rating_value} || ($min-1);
---
> 		my $hide_rating = $S->{UI}->{VARS}->{hide_rating_value};
> 		$sub_min = ($hide_rating == '') ? ($min - 1) : $hide_rating;
330c331,332
< 		$sub_min = $S->{UI}->{VARS}->{hide_rating_value} || ($min - 1);
---
> 		my $hide_rating = $S->{UI}->{VARS}->{hide_rating_value};
> 		$sub_min = ($hide_rating == '') ? ($min - 1) : $hide_rating;