Ver código fonte

minor html tweaks

James Wade 14 anos atrás
pai
commit
089367a07e
1 arquivos alterados com 6 adições e 6 exclusões
  1. 6 6
      modules/Pisg/HTMLGenerator.pm

+ 6 - 6
modules/Pisg/HTMLGenerator.pm

@@ -619,21 +619,21 @@ sub _activenicks
         my $ch   = $self->{stats}->{lengths}{$nick};
         my $sex = $self->{users}->{sex}{$nick};
         
-        my $output = "";
+        my $output = '';
         $output .= "<td $style>";
 
         # Hilight nick with gendercolors
         if ($sex and $sex eq 'm') {
-            $output .= "<span class=\"male\">";
+            $output .= '<span class="male">';
         } elsif ($sex and $sex eq 'f') {
-            $output .= "<span class=\"female\">";
+            $output .= '<span class="female">';
         } elsif ($sex and $sex eq 'b') {
-            $output .= "<span class=\"bot\">";
+            $output .= '<span class="bot">';
         } else {
-            $output .= "<span>";
+            $output .= '<span>';
         }
         $output .= $visiblenick;
-        $output .= "</span></td>";
+        $output .= '</span></td>';
 
         if ($self->{cfg}->{showlines}) {
             if ($self->{cfg}->{showlinetime}) {