--- loncom/interface/lonmsgdisplay.pm 2010/01/25 16:46:12 1.144
+++ loncom/interface/lonmsgdisplay.pm 2010/01/25 18:09:42 1.145
@@ -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 retrieve_instructor_comments {
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 @@ END
$setuname,$setudom);
$r->print(&Apache::loncommon::start_data_table_row());
$r->print(<<"END");
-
$ltext->{'star'}: $startform $ltext->{'endd'}: $endform |
+ $ltext->{'star'}: $startform $ltext->{'endd'}: $endform |
$settername |
|
@@ -3287,7 +3287,7 @@ sub sendoffmail {
}
} else {
my $message = &Apache::lonhtmlcommon::confirm_success(&mt('Could not deliver message'),1);
- $message .= ' '.&mt('Please use the browser "Back" button and correct the recipient addresses ([_1]).',$sendstatus);
+ $message .= ' '.&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 @@ sub handler {
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 .= ' '.&mt('Could not deliver forwarded message.').' '.
+ $message .= ' '.&mt('Could not deliver forwarded message.').' '.
&mt('The recipient addresses may need to be corrected').' ('.$forwardfail{$key}.')';
}
$message = &Apache::loncommon::confirmwrapper($message);
|