From: Davide P.C. <dp...@un...> - 2004-10-20 22:17:36
|
> The ones which first caught my attention are at the top: > > -use constant MY_PROBLEMS => ' My Problems '; > -use constant MAIN_PROBLEMS => ' Main Problems '; > +use constant MY_PROBLEMS => ' My Problems '; > +use constant MAIN_PROBLEMS => ' Main Problems '; I noticed issues like this when you added tabs to the FileManager.pm file as well. It did not follow the conventions that you specified in the indentation policy. E.g., my $self = shift; my $r = $self->r; my $authz = $r->authz; my $user = $r->param('user'); now was tabs to "align" the equal signs rather than spaces, as the policy seems to suggest. Davide |