summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarWilliam Heimbigner <william.heimbigner@gmail.com>2015-03-01 05:46:44 +0400
committerLibravatarJanik Kleinhoff <janik@kleinhoff.de>2015-03-01 05:46:44 +0400
commitbd98da1d18822b0a8b7fbfc1309076051917603b (patch)
tree9ebb1d5844f52fc11a1d56775efdd85fddebf52b
parentab9e7059f5bcec4d747f70340899c5d3ee163477 (diff)
modules/xml.pl: use NumericEscape => 2 for the string blacklist
-rw-r--r--modules/xml.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/xml.pl b/modules/xml.pl
index 9224649..1128dda 100644
--- a/modules/xml.pl
+++ b/modules/xml.pl
@@ -63,7 +63,7 @@ sub writeRestrictions {
sub writeBlacklist {
$::settingschanged=1;
- $::xs1->XMLout($::blacklist, RootName => 'blacklist', KeyAttr => ['id']) > io("$::cset/blacklist.xml");
+ $::xs1->XMLout($::blacklist, RootName => 'blacklist', KeyAttr => ['id'], NumericEscape => 2) > io("$::cset/blacklist.xml");
}
return 1;