From: Mike G. v. a. <we...@ma...> - 2009-03-10 21:09:33
|
Log Message: ----------- Fixed an extra paren that was causing problems. Modified Files: -------------- pg/lib: Applet.pm Revision Data ------------- Index: Applet.pm =================================================================== RCS file: /webwork/cvs/system/pg/lib/Applet.pm,v retrieving revision 1.19 retrieving revision 1.20 diff -Llib/Applet.pm -Llib/Applet.pm -u -r1.19 -r1.20 --- lib/Applet.pm +++ lib/Applet.pm @@ -284,7 +284,7 @@ }; bless $self, $class; $self->initialState('<xml></xml>'); - if ($self->{returnFieldName}) or $self->{answerBox} ) { # backward compatibility + if ($self->{returnFieldName} or $self->{answerBox} ) { # backward compatibility warn "use answerBoxAlias instead of returnFieldName or answerBox"; $self->{answerBox}=''; $self->{returnFieldName}=''; |