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

raeburn raeburn@source.lon-capa.org
Fri, 17 Sep 2010 02:04:07 -0000


raeburn		Fri Sep 17 02:04:07 2010 EDT

  Modified files:              
    /loncom/interface	courseprefs.pm 
  Log:
  - Bug 6366.
    Missing double quote caused trouble with Safari.
  
  
Index: loncom/interface/courseprefs.pm
diff -u loncom/interface/courseprefs.pm:1.29 loncom/interface/courseprefs.pm:1.30
--- loncom/interface/courseprefs.pm:1.29	Sat Aug 21 04:04:54 2010
+++ loncom/interface/courseprefs.pm	Fri Sep 17 02:04:06 2010
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Handler to set configuration settings for a course
 #
-# $Id: courseprefs.pm,v 1.29 2010/08/21 04:04:54 raeburn Exp $
+# $Id: courseprefs.pm,v 1.30 2010/09/17 02:04:06 raeburn Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -2556,7 +2556,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.'/>&nbsp;'.
                    $plrole.'</label></span></td>';
         if ($showsections) {
@@ -2588,7 +2588,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.' />&nbsp;'.$rolename.
                        '</label></span></td>';
             if ($showsections) {