[LON-CAPA-cvs] cvs: loncom(version_2_9_X) /interface courseprefs.pm
raeburn
raeburn@source.lon-capa.org
Fri, 17 Sep 2010 02:16:18 -0000
raeburn Fri Sep 17 02:16:18 2010 EDT
Modified files: (Branch: version_2_9_X)
/loncom/interface courseprefs.pm
Log:
- Backport 1.29, 1.30.
Index: loncom/interface/courseprefs.pm
diff -u loncom/interface/courseprefs.pm:1.8.2.12 loncom/interface/courseprefs.pm:1.8.2.13
--- loncom/interface/courseprefs.pm:1.8.2.12 Sat May 22 16:42:10 2010
+++ loncom/interface/courseprefs.pm Fri Sep 17 02:16:18 2010
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set configuration settings for a course
#
-# $Id: courseprefs.pm,v 1.8.2.12 2010/05/22 16:42:10 raeburn Exp $
+# $Id: courseprefs.pm,v 1.8.2.13 2010/09/17 02:16:18 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1022,8 +1022,8 @@
$hdr .= $env{'form.printfmthdr_limit_'.$i};
}
$hdr .= $env{'form.printfmthdr_sub_'.$i};
- } elsif ($env{'form.printfmthdr_sub_'.$i} ne '') {
- $hdr = $env{'form.printfmthdr_sub_'.$i};
+ } elsif ($env{'form.printfmthdr_text_'.$i} ne '') {
+ $hdr = $env{'form.printfmthdr_text_'.$i};
}
$newhdr[$env{'form.printfmthdr_pos_'.$i}] = $hdr;
}
@@ -2561,7 +2561,7 @@
$output .= '<tr>';
}
}
- $output .= '<td align="left"><span class="LC_nobreak"><label><input type="checkbox" name='.
+ $output .= '<td align="left"><span class="LC_nobreak"><label><input type="checkbox" name="'.
$item.'" value="'.$role.'"'.$checked.'/> '.
$plrole.'</label></span></td>';
if ($showsections) {
@@ -2593,7 +2593,7 @@
$output .= '<tr>';
}
}
- $output .= '<td><span class="LC_nobreak"><label><input type="checkbox" name='.
+ $output .= '<td><span class="LC_nobreak"><label><input type="checkbox" name="'.
$item.'" value="'.$value.'"'.$checked.' /> '.$rolename.
'</label></span></td>';
if ($showsections) {
@@ -3298,7 +3298,7 @@
a => 'assignment note',
);
my $output .= &mt('Substitution').'<br />'.
- '<select name=""printfmthdr_sub_'.$num.'">';
+ '<select name="printfmthdr_sub_'.$num.'">';
if ($subst eq '') {
$output .= '<option value="" selected="selected"> </option>';
}