Skip to content

Commit 0c23755

Browse files
authored
Merge pull request #224 from contactashish13/helpscout-152175
UTF8 support for string type column
2 parents 440256f + c23655e commit 0c23755

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

classes/Visualizer/Source.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,9 @@ protected function _normalizeData( $data ) {
221221
);
222222
}
223223
break;
224+
case 'string':
225+
$data[ $i ] = utf8_encode( $data[ $i ] );
226+
break;
224227
}
225228
}
226229

0 commit comments

Comments
 (0)