From 574dda8579c6a0a1b55d8a8cf7327e499e10f4b6 Mon Sep 17 00:00:00 2001 From: Rogan Hamby Date: Fri, 4 Dec 2020 08:20:44 -0500 Subject: [PATCH] fixing thinko in the comparison --- Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm index 061568e1f6..8f149c533d 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm @@ -216,7 +216,7 @@ sub set_ou_settings { for my $name (keys %$settings) { my $val = $$settings{$name}; - if ($name = 'opac.patron.custom_css') { $val = $defang->defang($val); } + if ($name eq 'opac.patron.custom_css') { $val = $defang->defang($val); } my $type = $e->retrieve_config_org_unit_setting_type([ $name, -- 2.11.0