--- loncom/lonnet/perl/lonnet.pm 2002/05/05 01:59:42 1.210 +++ loncom/lonnet/perl/lonnet.pm 2002/05/06 13:52:53 1.212 @@ -1,7 +1,7 @@ # The LearningOnline Network # TCP networking package # -# $Id: lonnet.pm,v 1.210 2002/05/05 01:59:42 www Exp $ +# $Id: lonnet.pm,v 1.212 2002/05/06 13:52:53 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2507,7 +2507,7 @@ sub symblist { if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db', &GDBM_WRCREAT,0640)) { foreach (keys %newhash) { - $hash{declutter($_)}=&symbclean($mapname.'___'.$newhash{$_}); + $hash{declutter($_)}=$mapname.'___'.$newhash{$_}; } if (untie(%hash)) { return 'ok'; @@ -2517,6 +2517,13 @@ sub symblist { return 'error'; } +# --------------------------------------------------------------- Verify a symb + +sub symbverify { + my ($symb,$thisfn)=@_; + return 1; +} + # --------------------------------------------------------------- Clean-up symb sub symbclean {