Minor fixes (typo and unnecessary hash dereference)

This commit is contained in:
Patrick Donelan 2008-10-15 01:03:13 +00:00
parent 2a9bbc7490
commit afde10109f
2 changed files with 2 additions and 2 deletions

View file

@ -658,7 +658,7 @@ $self->session->errorHandler->error("Can take survey");
return $self->surveyEnd();
}
return $self->surveyEnd() if($seslf->response->surveyEnd());
return $self->surveyEnd() if($self->response->surveyEnd());
my $questions = $self->response->nextQuestions();
$self->session->errorHandler->error("Load Questions had ".@$questions." questions");