--- loncom/interface/spreadsheet/Spreadsheet.pm 2006/05/30 12:46:26 1.69
+++ loncom/interface/spreadsheet/Spreadsheet.pm 2006/09/03 00:39:57 1.70
@@ -1,5 +1,5 @@
#
-# $Id: Spreadsheet.pm,v 1.69 2006/05/30 12:46:26 www Exp $
+# $Id: Spreadsheet.pm,v 1.70 2006/09/03 00:39:57 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1286,8 +1286,8 @@ sub html_template_row {
$row_html .= '
'.
&html_uneditable_cell($cell,'#FFDDDD',$allowed).' | ';
} else {
- $row_html .= ''.
- &html_editable_cell($cell,'#EOFFDD',$allowed,
+ $row_html .= ' | '.
+ &html_editable_cell($cell,'#E0FFDD',$allowed,
$self->{outputmode} eq 'source').' | ';
}
}
@@ -1363,7 +1363,7 @@ sub html_row {
$row_html .= '';
$row_html .= &html_uneditable_cell($cell,'#FFDDDD');
} else {
- $row_html .= ' | ';
+ $row_html .= ' | ';
$row_html .= &html_editable_cell($cell,'#E0FFDD',$allowed,
$self->{outputmode} eq 'source');
}
|