--- loncom/xml/lonplot.pm 2002/04/23 15:21:36 1.65 +++ loncom/xml/lonplot.pm 2002/04/24 16:38:40 1.66 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Dynamic plot # -# $Id: lonplot.pm,v 1.65 2002/04/23 15:21:36 matthew Exp $ +# $Id: lonplot.pm,v 1.66 2002/04/24 16:38:40 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -992,7 +992,7 @@ sub write_gnuplot_file { $gnuplot_input .= "set output\n"; } elsif ($target eq 'tex') { $gnuplot_input .= "set term postscript eps monochrome\n"; - $gnuplot_input .= "set output \"$filename.eps\"\n"; + $gnuplot_input .= "set output \"/home/httpd/perl/tmp/$filename.eps\"\n"; } # grid $gnuplot_input .= 'set grid'.$/ if ($plot{'grid'} eq 'on');