Skip to content

Commit

Permalink
It's class, not name, on div tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
chunky committed Aug 10, 2004
1 parent 4e3a927 commit 683be19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions IcculusFinger_daemon.pl
Expand Up @@ -624,12 +624,12 @@ sub output_start {
</head>
<body>
<div name="top">
<div class="top">
<center><h1>Finger info for $user\@$host...</h1></center>
</div>
<hr>
<div name="content">
<div class="content">
__EOF__
print "\n<pre>\n" if ($browser !~ /Lynx/);
Expand All @@ -655,7 +655,7 @@ sub output_ending {
$revision = ((defined $revision) ? "$revision<br>\n" : '');

print <<__EOF__;
<div name="bottom">
<div class="bottom">
<hr>
<center>
<font size="-3">
Expand Down Expand Up @@ -1020,7 +1020,7 @@ sub do_fingering {

# Change [entry][/entry] tags.
if ($do_html_formatting) {
1 while ($output_text =~ s/\[entry](.*?)\[\/entry\]/<div name="entry">$1<\/div name="entry">/is);
1 while ($output_text =~ s/\[entry](.*?)\[\/entry\]/<div class="entry">$1<\/div>/is);
} else {
1 while ($output_text =~ s/\[entry](.*?)\[\/entry\]/$1/is);
}
Expand Down

0 comments on commit 683be19

Please sign in to comment.