[LON-CAPA-cvs] cvs: loncom /interface domainprefs.pm
raeburn
raeburn at source.lon-capa.org
Wed May 20 12:01:16 EDT 2026
raeburn Wed May 20 16:01:16 2026 EDT
Modified files:
/loncom/interface domainprefs.pm
Log:
- Fix regexp added in rev. 1.275
Index: loncom/interface/domainprefs.pm
diff -u loncom/interface/domainprefs.pm:1.458 loncom/interface/domainprefs.pm:1.459
--- loncom/interface/domainprefs.pm:1.458 Wed Apr 15 16:36:58 2026
+++ loncom/interface/domainprefs.pm Wed May 20 16:01:16 2026
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set domain-wide configuration settings
#
-# $Id: domainprefs.pm,v 1.458 2026/04/15 16:36:58 raeburn Exp $
+# $Id: domainprefs.pm,v 1.459 2026/05/20 16:01:16 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -9146,7 +9146,7 @@
if ($location) {
if (grep(/^\Q$location\E$/,@{$intdoms})) {
my $dom = &Apache::lonnet::host_domain($id);
- unless (grep(/^\Q$dom\E/,@{$instdoms})) {
+ unless (grep(/^\Q$dom\E$/,@{$instdoms})) {
push(@{$instdoms},$dom);
}
next;
More information about the LON-CAPA-cvs
mailing list