Log Message:
-----------
Fixed bug. Pass variables in $foo = FlashApplet(...) to the actual applet creator
Modified Files:
--------------
pg/macros:
AppletObjects.pl
Revision Data
-------------
Index: AppletObjects.pl
===================================================================
RCS file: /webwork/cvs/system/pg/macros/AppletObjects.pl,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lmacros/AppletObjects.pl -Lmacros/AppletObjects.pl -u -r1.2 -r1.3
--- macros/AppletObjects.pl
+++ macros/AppletObjects.pl
@@ -42,7 +42,7 @@
=cut
sub FlashApplet {
- return new FlashApplet();
+ return new FlashApplet(@_);
}
|