[LON-CAPA-cvs] cvs: loncom /interface lonhelper.pm

bowersj2 lon-capa-cvs@mail.lon-capa.org
Wed, 21 May 2003 13:41:00 -0000


bowersj2		Wed May 21 09:41:00 2003 EDT

  Modified files:              
    /loncom/interface	lonhelper.pm 
  Log:
  This broke all helpers.
  
  My best guess on how this happened was a ^K^K going to the wrong window 
  and I never noticed, because I can neither think of nor remember a 
  reason for whacking this line, which was like *the critical* line to the 
  functioning of the helper.
  
  
  
Index: loncom/interface/lonhelper.pm
diff -u loncom/interface/lonhelper.pm:1.32 loncom/interface/lonhelper.pm:1.33
--- loncom/interface/lonhelper.pm:1.32	Fri May 16 16:44:43 2003
+++ loncom/interface/lonhelper.pm	Wed May 21 09:41:00 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # .helper XML handler to implement the LON-CAPA helper
 #
-# $Id: lonhelper.pm,v 1.32 2003/05/16 20:44:43 bowersj2 Exp $
+# $Id: lonhelper.pm,v 1.33 2003/05/21 13:41:00 bowersj2 Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -636,6 +636,7 @@
 
     # Handle writing out the vars to the file
     my $file = Apache::File->new('>'.$self->{FILENAME});
+    print $file $self->_varsInFile();
 
     return $result;
 }