Log Message:
-----------
commented out a warning about using RCORD_FORM_LABELS until
I can fix it properly -- it's used by ProblemRandomize for example.
Modified Files:
--------------
pg/macros:
PG.pl
Revision Data
-------------
Index: PG.pl
===================================================================
RCS file: /webwork/cvs/system/pg/macros/PG.pl,v
retrieving revision 1.44
retrieving revision 1.45
diff -Lmacros/PG.pl -Lmacros/PG.pl -u -r1.44 -r1.45
--- macros/PG.pl
+++ macros/PG.pl
@@ -155,7 +155,8 @@
sub RECORD_FORM_LABEL { # this stores form data (such as sticky answers), but does nothing more
# it's a bit of hack since we are storing these in the
# KEPT_EXTRA_ANSWERS queue even if they aren't answers per se.
- warn "Using RECORD_FORM_LABEL -- deprecated?";
+ #FIXME
+ # warn "Using RECORD_FORM_LABEL -- deprecated? use $PG->store_persistent_data instead.";
RECORD_EXTRA_ANSWERS(@_);
}
|