[LON-CAPA-cvs] cvs: loncom /interface lonmsgdisplay.pm
raeburn
raeburn@source.lon-capa.org
Mon, 25 Jan 2010 18:09:42 -0000
raeburn Mon Jan 25 18:09:42 2010 EDT
Modified files:
/loncom/interface lonmsgdisplay.pm
Log:
- scope
- xhtml
Index: loncom/interface/lonmsgdisplay.pm
diff -u loncom/interface/lonmsgdisplay.pm:1.144 loncom/interface/lonmsgdisplay.pm:1.145
--- loncom/interface/lonmsgdisplay.pm:1.144 Mon Jan 25 16:46:12 2010
+++ loncom/interface/lonmsgdisplay.pm Mon Jan 25 18:09:42 2010
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Routines for messaging display
#
-# $Id: lonmsgdisplay.pm,v 1.144 2010/01/25 16:46:12 raeburn Exp $
+# $Id: lonmsgdisplay.pm,v 1.145 2010/01/25 18:09:42 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1844,9 +1844,9 @@
sub disfacetoface {
my ($r,$user,$domain,$target)=@_;
- if ($target eq '') {
- my $target=$env{'form.grade_target'};
- }
+ if ($target eq '') {
+ $target=$env{'form.grade_target'};
+ }
unless ($env{'request.course.id'}) { return; }
if (!&Apache::lonnet::allowed('dff',$env{'request.course.id'})
&& ! &Apache::lonnet::allowed('dff',$env{'request.course.id'}.
@@ -2249,7 +2249,7 @@
$setuname,$setudom);
$r->print(&Apache::loncommon::start_data_table_row());
$r->print(<<"END");
- <td>$ltext->{'star'}: $startform<br/>$ltext->{'endd'}: $endform</td>
+ <td>$ltext->{'star'}: $startform<br />$ltext->{'endd'}: $endform</td>
<td>$settername</td>
<td><input type="text" name="title_$parmcount" size="15" value="$title" /><input type="hidden" name="key_$parmcount" value="$record" /></td>
<td>
@@ -3287,7 +3287,7 @@
}
} else {
my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Could not deliver message'),1);
- $message .= '<br/>'.&mt('Please use the browser "Back" button and correct the recipient addresses ([_1]).',$sendstatus);
+ $message .= '<br />'.&mt('Please use the browser "Back" button and correct the recipient addresses ([_1]).',$sendstatus);
$message = &Apache::loncommon::confirmwrapper($message);
$r->print($message);
}
@@ -3575,7 +3575,7 @@
my $count = keys(%forwardfail);
my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Could not forward [quant,_1,message].',$count),1);
foreach my $key (keys(%forwardfail)) {
- $message .= '<br/>'.&mt('Could not deliver forwarded message.').'</span> '.
+ $message .= '<br />'.&mt('Could not deliver forwarded message.').'</span> '.
&mt('The recipient addresses may need to be corrected').' ('.$forwardfail{$key}.')';
}
$message = &Apache::loncommon::confirmwrapper($message);