[Bps-public-commit] rt-extension-configindatabase branch, master, updated. fef72dbab2b1c112455322920855902c0930e36f
Maureen Mirville
maureen at bestpractical.com
Wed Oct 4 17:37:18 EDT 2017
The branch, master has been updated
via fef72dbab2b1c112455322920855902c0930e36f (commit)
from 5440e25e412a47f2fd71be33e8087829003dce95 (commit)
Summary of changes:
html/Admin/Tools/EditConfig.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit fef72dbab2b1c112455322920855902c0930e36f
Author: Maureen E. Mirville <maureen at bestpractical.com>
Date: Wed Oct 4 17:36:31 2017 -0400
Fixed unescaped brace on modern perl versions
diff --git a/html/Admin/Tools/EditConfig.html b/html/Admin/Tools/EditConfig.html
index 982c365..acc2bc0 100644
--- a/html/Admin/Tools/EditConfig.html
+++ b/html/Admin/Tools/EditConfig.html
@@ -156,7 +156,7 @@ foreach my $key ( RT->Config->Options( Overridable => undef, Sorted => 0 ) ) {
my $is_password = ($key =~ /Password/i and $key !~ /MinimumPasswordLength|AllowLoginPasswordAutoComplete/ );
my $is_immutable = $meta->{Immutable}
|| $meta->{Obfuscate}
- || ($is_code && $val =~ s/sub { "DUMMY" }/sub { ... }/g)
+ || ($is_code && $val =~ s/sub \{ "DUMMY" \}/sub { ... }/g)
|| ($is_code && !$has_execute_code);
my $current_value = $is_code ? $val : $raw_value;
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list