--- loncom/interface/lonprintout.pm 2004/12/13 23:28:43 1.341 +++ loncom/interface/lonprintout.pm 2004/12/20 21:15:20 1.342 @@ -1,7 +1,7 @@ # The LearningOnline Network # Printout # -# $Id: lonprintout.pm,v 1.341 2004/12/13 23:28:43 foxr Exp $ +# $Id: lonprintout.pm,v 1.342 2004/12/20 21:15:20 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1343,7 +1343,7 @@ ENDPART my $URLback=''; #link to original document if ($helper->{'VARS'}->{'construction'} ne '1') { #prints published resource - $URLback=$helper->{'VARS'}->{'postdata'}; + $URLback=&Apache::lonnet::escape('/adm/flip?postdata=return:'); } else { #prints resource from the construction space $URLback='/'.$helper->{'VARS'}->{'filename'}; @@ -1674,8 +1674,8 @@ sub printHelper { my $isNotMap = '!$res->is_sequence()'; $isNotMap .= ' && !$res->randomout()' if !$userCanSeeHidden; my $isMap = '$res->is_map()'; - my $symbFilter = '$res->symb()'; - my $urlValue = '$res->src()'; + my $symbFilter = '$res->shown_symb()'; + my $urlValue = '$res->link()'; $helper->declareVar('SEQUENCE');