[LON-CAPA-cvs] cvs: loncom /interface domainprefs.pm
raeburn
lon-capa-cvs-allow@mail.lon-capa.org
Mon, 04 Jun 2007 14:14:28 -0000
raeburn Mon Jun 4 10:14:28 2007 EDT
Modified files:
/loncom/interface domainprefs.pm
Log:
permanentemail replaces email to conform with usage in user's environment.db
Index: loncom/interface/domainprefs.pm
diff -u loncom/interface/domainprefs.pm:1.19 loncom/interface/domainprefs.pm:1.20
--- loncom/interface/domainprefs.pm:1.19 Fri Jun 1 01:48:23 2007
+++ loncom/interface/domainprefs.pm Mon Jun 4 10:14:27 2007
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set domain-wide configuration settings
#
-# $Id: domainprefs.pm,v 1.19 2007/06/01 05:48:23 albertel Exp $
+# $Id: domainprefs.pm,v 1.20 2007/06/04 14:14:27 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -853,10 +853,11 @@
if (keys(%{$usertypes}) > 0) {
$othertitle = &mt('Other users');
}
- my @fields = ('lastname','firstname','middlename','gen','email','id');
+ my @fields = ('lastname','firstname','middlename','gen',
+ 'permanentemail','id');
my %fieldtitles = &Apache::lonlocal::texthash (
id => 'Student/Employee ID',
- email => 'E-mail address',
+ permanentemail => 'E-mail address',
lastname => 'Last Name',
firstname => 'First Name',
middlename => 'Middle Name',
@@ -1661,7 +1662,7 @@
my ($usertypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($dom);
my %fieldtitles = &Apache::lonlocal::texthash (
id => 'Student/Employee ID',
- email => 'E-mail address',
+ permanentemail => 'E-mail address',
lastname => 'Last Name',
firstname => 'First Name',
middlename => 'Middle Name',