--- loncom/xml/lonxml.pm 2006/10/03 20:37:07 1.421 +++ loncom/xml/lonxml.pm 2006/10/04 19:48:36 1.422 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.421 2006/10/03 20:37:07 albertel Exp $ +# $Id: lonxml.pm,v 1.422 2006/10/04 19:48:36 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1017,7 +1017,7 @@ sub store_counter { } sub remember_problem_counter { - &Apache::lonnet::transfer_profile_to_env(); + &Apache::lonnet::transfer_profile_to_env(undef,undef,1); $state = $env{'form.counter'}; } @@ -1028,7 +1028,7 @@ sub store_counter { } sub get_problem_counter { if ($Apache::lonxml::counter_changed) { &store_counter() } - &Apache::lonnet::transfer_profile_to_env(); + &Apache::lonnet::transfer_profile_to_env(undef,undef,1); return $env{'form.counter'}; } }