diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-05-09 18:26:23 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-05-09 18:26:23 +0000 |
commit | d3dbe9ee10fbe5a2be9709f761455a381c5d12e4 (patch) | |
tree | bb21b540808740068a2638026b081b065e72f6d4 | |
parent | 28f40b890b2489b1460cc8f2be6f957818e77160 (diff) |
Adding missing binmode line for utf8 support
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1177 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | LedgerSMB/Sysconfig.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/LedgerSMB/Sysconfig.pm b/LedgerSMB/Sysconfig.pm index 6a78f3ac..6474dfd6 100644 --- a/LedgerSMB/Sysconfig.pm +++ b/LedgerSMB/Sysconfig.pm @@ -8,6 +8,8 @@ use LedgerSMB::Form; use Config::Std; use DBI qw(:sql_types); +binmode STDOUT, ':utf8'; + # For Win32, change $pathsep to ';'; $pathsep = ':'; |