Просмотр исходного кода

Fix 'remaining nicks' being showed up when there is no remaining nicks.
Also stop hardcoding filenames in 'legend'

Morten Brix Pedersen 25 лет назад
Родитель
Сommit
571587f715
1 измененных файлов с 8 добавлено и 6 удалено
  1. 8 6
      pisg.pl

+ 8 - 6
pisg.pl

@@ -1180,10 +1180,10 @@ sub activetimes
 sub legend
 sub legend
 {
 {
     html("<table align=\"center\" border=\"0\" width=\"520\"><tr>");
     html("<table align=\"center\" border=\"0\" width=\"520\"><tr>");
-    html("<td align=\"center\"><img src=\"blue-h.png\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 0-5</td>");
-    html("<td align=\"center\"><img src=\"green-h.png\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 6-11</td>");
-    html("<td align=\"center\"><img src=\"yellow-h.png\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 12-17</td>");
-    html("<td align=\"center\"><img src=\"red-h.png\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 18-23</td>");
+    html("<td align=\"center\"><img src=\"$conf->{pic_h_0}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 0-5</td>");
+    html("<td align=\"center\"><img src=\"$conf->{pic_h_6}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 6-11</td>");
+    html("<td align=\"center\"><img src=\"$conf->{pic_h_12}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 12-17</td>");
+    html("<td align=\"center\"><img src=\"$conf->{pic_h_18}\" width=\"40\" height=\"15\" align=\"middle\" alt=\"\"> = 18-23</td>");
     html("</tr></table>\n");
     html("</tr></table>\n");
 }
 }
 
 
@@ -1290,7 +1290,7 @@ sub activenicks
     # Almost as active nicks ('These didn't make it to the top..')
     # Almost as active nicks ('These didn't make it to the top..')
 
 
     my $nickstoshow = $conf->{activenicks} + $conf->{activenicks2};
     my $nickstoshow = $conf->{activenicks} + $conf->{activenicks2};
-	$hash{totalnicks} = ($nicks - $nickstoshow);
+    $hash{totalnicks} = $nicks - $nickstoshow;
 
 
     unless ($nickstoshow > $nicks) {
     unless ($nickstoshow > $nicks) {
 
 
@@ -1306,7 +1306,9 @@ sub activenicks
         html("</table>");
         html("</table>");
     }
     }
 
 
-	html("<br><b>" . template_text('totalnicks', %hash) . "</b><br>");
+    if($hash{totalnicks} > 0) {
+        html("<br><b>" . template_text('totalnicks', %hash) . "</b><br>");
+    }
 }
 }
 
 
 sub user_linetimes {
 sub user_linetimes {