fix a typo in Auth.pm for the profile method

This commit is contained in:
Colin Kuskie 2007-10-29 22:42:38 +00:00
parent 4519ecb261
commit a915b15cd7

View file

@ -759,7 +759,7 @@ Sets or returns the Profile hash for a user.
sub profile {
my $self = shift;
return $self->{profile} if ($_[0]);
return $self->{profile} if (!$_[0]);
$self->{profile} = $_[0];
}