[LON-CAPA-cvs] cvs: loncom(version_2_11_X) /interface loncommon.pm
raeburn
raeburn at source.lon-capa.org
Mon Mar 18 20:49:28 EDT 2013
raeburn Tue Mar 19 00:49:28 2013 EDT
Modified files: (Branch: version_2_11_X)
/loncom/interface loncommon.pm
Log:
- For 2.11
- Backport 1.1117
Index: loncom/interface/loncommon.pm
diff -u loncom/interface/loncommon.pm:1.1075.2.31 loncom/interface/loncommon.pm:1.1075.2.32
--- loncom/interface/loncommon.pm:1.1075.2.31 Fri Mar 1 22:01:08 2013
+++ loncom/interface/loncommon.pm Tue Mar 19 00:49:27 2013
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common routines
#
-# $Id: loncommon.pm,v 1.1075.2.31 2013/03/01 22:01:08 raeburn Exp $
+# $Id: loncommon.pm,v 1.1075.2.32 2013/03/19 00:49:27 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1000,7 +1000,7 @@
my ($name,$selected,$includeempty) = @_;
my %langchoices;
if ($includeempty) {
- %langchoices = ('' => &mt('No language preference'));
+ %langchoices = ('' => 'No language preference');
}
foreach my $id (&languageids()) {
my $code = &supportedlanguagecode($id);
@@ -1008,6 +1008,7 @@
$langchoices{$code} = &plainlanguagedescription($id);
}
}
+ %langchoices = &Apache::lonlocal::texthash(%langchoices);
return &select_form($selected,$name,\%langchoices);
}
More information about the LON-CAPA-cvs
mailing list