--- loncom/xml/londefdef.pm 2001/01/05 19:20:01 1.15 +++ loncom/xml/londefdef.pm 2001/01/12 20:38:05 1.16 @@ -237,10 +237,13 @@ sub BEGIN { sub start_meta { my ($target,$token) = @_; my $currentstring = ''; + &Apache::lonxml::debug("In meta"); if ($target eq 'web') { + &Apache::lonxml::debug("In meta2"); $currentstring = $token->[4]; } if ($target eq 'meta') { + &Apache::lonxml::debug("In meta3"); unless ($token->[2]->{'http-equiv'}) { my $name=$token->[2]->{'name'}; $name=~tr/A-Z/a-z/; @@ -252,6 +255,7 @@ sub BEGIN { } } } + &Apache::lonxml::debug("send back $currentstring"); return $currentstring; } sub end_meta {