tbrehm
2011-03-08 e44b8d0ad6201d960193689730d09f39e256cb71
Fixed: FS#1553 - Language encoding issues with autoresponder texts
1 files modified
4 ■■■■ changed files
server/lib/classes/modules.inc.php 4 ●●●● patch | view | raw | blame | history
server/lib/classes/modules.inc.php
@@ -98,12 +98,14 @@
                    $data = unserialize($d['data']);
                }
                //** Decode data back to locale
                /*
                foreach($data['old'] as $key => $val) {
                    $data['old'][$key] = utf8_decode($val);
                }
                foreach($data['new'] as $key => $val) {
                    $data['new'][$key] = utf8_decode($val);
                }
                */
                
                $replication_error = false;
                
@@ -206,12 +208,14 @@
                    $data = unserialize($d['data']);
                }
                //** decode data back to current locale
                /*
                foreach($data['old'] as $key => $val) {
                    $data['old'][$key] = utf8_decode($val);
                }
                foreach($data['new'] as $key => $val) {
                    $data['new'][$key] = utf8_decode($val);
                }
                */
                
                $this->current_datalog_id = $d['datalog_id'];
                if(is_array($data['old']) || is_array($data['new'])) {