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

raeburn lon-capa-cvs@mail.lon-capa.org
Fri, 03 Nov 2006 18:42:15 -0000


raeburn		Fri Nov  3 13:42:15 2006 EDT

  Modified files:              
    /loncom/interface	lonpickcourse.pm 
  Log:
  Non-standard courses no longer being called 'Groups'  
  
  
Index: loncom/interface/lonpickcourse.pm
diff -u loncom/interface/lonpickcourse.pm:1.52 loncom/interface/lonpickcourse.pm:1.53
--- loncom/interface/lonpickcourse.pm:1.52	Mon Jul 10 22:28:22 2006
+++ loncom/interface/lonpickcourse.pm	Fri Nov  3 13:42:11 2006
@@ -1,7 +1,7 @@
 # The LearningOnline Network
 # Pick a course
 #
-# $Id: lonpickcourse.pm,v 1.52 2006/07/11 02:28:22 raeburn Exp $
+# $Id: lonpickcourse.pm,v 1.53 2006/11/03 18:42:11 raeburn Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -225,7 +225,7 @@
     my $jscript;
     my $typeselectform =  '<select name="type" size="1"';
     $typeselectform .= ">\n";
-    foreach my $posstype ('Course','Group') { 
+    foreach my $posstype ('Course','Non-standard course') { 
         $typeselectform.='<option value="'.$posstype.'" "'.
             ($posstype eq $type ? 'selected="selected" ' : ''). ">$posstype</option>\n";
     }
@@ -249,7 +249,7 @@
               'cin' => &mt('Course Institutional Code'),
               'cow' => &mt("[_1] Owner's Username",$type),
               'cod' => &mt("[_1] Owner's Domain", $type),
-              'cog' => &mt('Course or Group')
+              'cog' => &mt('Course Type')
              );
    
     my ($name_code,$name_input);
@@ -282,12 +282,12 @@
  size="10" value="'.$listinstcode.'" /><br />';
     }
     my %elements = (
-                     Course => {
+                     'Course' => {
                                  name  => 'coursepick',
                                  total => 'coursetotal',
                                  list  => 'courselist',
                                },
-                     Group => {
+                     'Non-standard course' => {
                                  name  => 'grouppick',
                                  total => 'grouptotal',
                                  list  => 'grouplist',