Diff for /loncom/interface/lonhtmlcommon.pm between versions 1.142 and 1.143

version 1.142, 2006/07/07 13:40:16 version 1.143, 2006/07/07 19:17:19
Line 1399  ENDONE Line 1399  ENDONE
 }  }
   
 sub row_closure {  sub row_closure {
       my ($no_separator) =@_;
     my $output = <<"ENDTWO";      my $output = <<"ENDTWO";
             </td>              </td>
            </tr>             </tr>
   ENDTWO
       if (!$no_separator) {
           $output .= <<"ENDTWO";
            <tr>             <tr>
             <td colspan="2" class="LC_pick_box_seperator">              <td colspan="2" class="LC_pick_box_separator">
             </td>              </td>
            </tr>             </tr>
 ENDTWO  ENDTWO
       }
     return $output;      return $output;
 }  }
   

Removed from v.1.142  
changed lines
  Added in v.1.143


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>