--- loncom/interface/loncoursedata.pm 2003/12/09 21:14:23 1.109 +++ loncom/interface/loncoursedata.pm 2003/12/11 22:18:04 1.110 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: loncoursedata.pm,v 1.109 2003/12/09 21:14:23 matthew Exp $ +# $Id: loncoursedata.pm,v 1.110 2003/12/11 22:18:04 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -188,6 +188,10 @@ sub get_sequence_assessment_data { $title =~ s/\:/\&\#058;/g; $symb = $curRes->symb(); $src = $curRes->src(); + # Grab the filename if there is not title available + if (! defined($title) || $title eq '') { + ($title) = ($src=~ m:/([^/]*)$:); + } my $parts = $curRes->parts(); my %partdata; foreach my $part (@$parts) {