From: Mike G. v. a. <we...@ma...> - 2008-07-08 15:31:04
|
Log Message: ----------- forward port of bug fix in rel-2-4-5 Modified Files: -------------- pg/macros: contextIntegerFunctions.pl Revision Data ------------- Index: contextIntegerFunctions.pl =================================================================== RCS file: /webwork/cvs/system/pg/macros/contextIntegerFunctions.pl,v retrieving revision 1.11 retrieving revision 1.12 diff -Lmacros/contextIntegerFunctions.pl -Lmacros/contextIntegerFunctions.pl -u -r1.11 -r1.12 --- macros/contextIntegerFunctions.pl +++ macros/contextIntegerFunctions.pl @@ -46,7 +46,7 @@ sub _contextIntegerFunctions_init {context::IntegerFunctions2::Init()}; # don't reload this file -package context::IntegerFunction2; +package context::IntegerFunctions2; our @ISA = qw(Parser::Function::numeric2); # checks for 2 numeric inputs sub C { @@ -69,8 +69,8 @@ $context->{name} = "IntegerFunctions"; $context->functions->add( - C => {class => 'context::IntegerFunction2'}, - P => {class => 'context::IntegerFunction2'}, + C => {class => 'context::IntegerFunctions2'}, + P => {class => 'context::IntegerFunctions2'}, ); main::Context("IntegerFunctions"); |