[SimBot-commits] CVS: simbot/plugins httpd.pl,1.17,1.18
Status: Abandoned
Brought to you by:
kstange
|
From: Kevin S. <ks...@us...> - 2005-08-11 13:39:41
|
Update of /cvsroot/simbot/simbot/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25178/plugins Modified Files: httpd.pl Log Message: Standards compliance for the index can be accomplished with a </li> Index: httpd.pl =================================================================== RCS file: /cvsroot/simbot/simbot/plugins/httpd.pl,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -p -r1.17 -r1.18 --- httpd.pl 10 Aug 2005 19:29:36 -0000 1.17 +++ httpd.pl 11 Aug 2005 13:39:31 -0000 1.18 @@ -72,7 +72,7 @@ sub index_handler { foreach my $url (keys %SimBot::hash_plugin_httpd_pages) { my $title = $SimBot::hash_plugin_httpd_pages{$url}->{'title'}; - $msg .= qq(<li><a href="$url">$title</a>\n); + $msg .= qq(<li><a href="$url">$title</a></li>\n); } $msg .= "</ul>\n"; |