--- loncom/interface/lonnavmaps.pm 2003/04/04 21:36:01 1.174 +++ loncom/interface/lonnavmaps.pm 2003/04/18 13:51:46 1.176 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Navigate Maps Handler # -# $Id: lonnavmaps.pm,v 1.174 2003/04/04 21:36:01 albertel Exp $ +# $Id: lonnavmaps.pm,v 1.176 2003/04/18 13:51:46 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1000,8 +1000,8 @@ sub render { # Step two: Locate what kind of here marker is necessary # Determine where the "here" marker is and where the screen jumps to. - if ($ENV{'form.symb'}) { - $here = $jump = $ENV{'form.symb'}; + if ($ENV{'form.postsymb'}) { + $here = $jump = $ENV{'form.postsymb'}; } elsif ($ENV{'form.postdata'}) { # couldn't find a symb, is there a URL? my $currenturl = $ENV{'form.postdata'}; @@ -1351,7 +1351,7 @@ sub render { $r->rflush(); } - #if ($mustCloseNavMap) { $navmap->untieHashes(); } + if ($mustCloseNavMap) { $navmap->untieHashes(); } return $result; } @@ -2690,6 +2690,7 @@ sub to { my $self=shift; return $self->n sub compTitle { my $self = shift; my $title = $self->title(); + $title=~s/\&colon\;/\:/gs; if (!$title) { $title = $self->src(); $title = substr($title, rindex($title, '/') + 1);