[LON-CAPA-cvs] cvs: loncom /interface lonnotify.pm

raeburn lon-capa-cvs@mail.lon-capa.org
Sat, 29 Jul 2006 00:48:22 -0000


raeburn		Fri Jul 28 20:48:22 2006 EDT

  Modified files:              
    /loncom/interface	lonnotify.pm 
  Log:
  Removing superfluous column from table of potential recipients.
  
  
Index: loncom/interface/lonnotify.pm
diff -u loncom/interface/lonnotify.pm:1.22 loncom/interface/lonnotify.pm:1.23
--- loncom/interface/lonnotify.pm:1.22	Tue Jul 11 11:37:59 2006
+++ loncom/interface/lonnotify.pm	Fri Jul 28 20:48:21 2006
@@ -607,14 +607,14 @@
 	$output .= &Apache::loncommon::start_data_table();
         if (keys(%recipients) > 0) {
 	    $output .= &Apache::loncommon::start_data_table_header_row();
-            $output .= '<th>&nbsp;<th>username:domain</th><th>&nbsp;&nbsp;</th><th>'.$lt{'emad'}.'</th>';
+            $output .= '<th>&nbsp;<th>username:domain</th><th>'.$lt{'emad'}.'</th>';
 	    $output .= &Apache::loncommon::end_data_table_header_row();
         }
         foreach my $username (sort(keys(%recipients))) {
 	    $output .= &Apache::loncommon::start_data_table_row();
             if ($recipients{$username} =~ /\@/) {
                 my $value=&escape($username).':'.&escape($recipients{$username});
-                $output .= '<td><input type="checkbox" name="recipient" value="'.$value.'" /></td><td>'.$username.'</td><td>&nbsp;&nbsp;</td><td>'.$recipients{$username}.'</td>';
+                $output .= '<td><input type="checkbox" name="recipient" value="'.$value.'" /></td><td>'.$username.'</td><td>'.$recipients{$username}.'</td>';
             }
 	    $output .= &Apache::loncommon::end_data_table_row();
         }