From 4f72f6273e67c05915fb77f403b8449b0deaee71 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 14 Mar 2014 14:08:00 +0100 Subject: [PATCH] Bug 11944: Set ImplicitUnicode for YAML Before this patch, string for yaml files used in preferences.pl were broken. --- admin/preferences.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/admin/preferences.pl b/admin/preferences.pl index 8bcdb0a..80c228c 100755 --- a/admin/preferences.pl +++ b/admin/preferences.pl @@ -35,6 +35,7 @@ use IO::File; use YAML::Syck qw(); use List::MoreUtils qw(any); $YAML::Syck::ImplicitTyping = 1; +$YAML::Syck::ImplicitUnicode = 1; our $lang; # use Smart::Comments; -- 1.7.10.4