[LON-CAPA-cvs] cvs: loncom /interface lonhelper.pm
foxr
lon-capa-cvs@mail.lon-capa.org
Mon, 03 Jul 2006 11:12:24 -0000
foxr Mon Jul 3 07:12:24 2006 EDT
Modified files:
/loncom/interface lonhelper.pm
Log:
Add headers prior to the various sections of the student prompt
so the users have >some< idea what they're choosing. request 3809
Index: loncom/interface/lonhelper.pm
diff -u loncom/interface/lonhelper.pm:1.155 loncom/interface/lonhelper.pm:1.156
--- loncom/interface/lonhelper.pm:1.155 Sun Jun 25 17:50:25 2006
+++ loncom/interface/lonhelper.pm Mon Jul 3 07:12:24 2006
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# .helper XML handler to implement the LON-CAPA helper
#
-# $Id: lonhelper.pm,v 1.155 2006/06/25 21:50:25 albertel Exp $
+# $Id: lonhelper.pm,v 1.156 2006/07/03 11:12:24 foxr Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -2430,6 +2430,7 @@
# Current personel
+ $result .= '<h4>Select Currently Enrolled Students and Active Course Personnel</h4>';
$result .= &Apache::lonselstudent::render_student_list( $current_members,
"helpform",
"current",
@@ -2445,6 +2446,8 @@
# And future.
+ $result .= '<h4>Select Future Enrolled Students and Future Course Personnel</h4>';
+
$result .= &Apache::lonselstudent::render_student_list( $future_members,
"helpform",
"future",
@@ -2454,6 +2457,7 @@
0);
# Past
+ $result .= '<h4>Select Previously Enrolled Students and Inactive Course Personnel</h4>';
$result .= &Apache::lonselstudent::render_student_list($expired_members,
"helpform",
"past",