Skip to content

Commit fcd3e9c

Browse files
committed
Lib: Change encoding to ISO-8859-1 from UTF-8
QuickBase's default encoding is ISO-8859-1. SimpleXML expects to read/write what it is declared as. If it encounters a character that is not valid, it throws an exception.
1 parent 7e82799 commit fcd3e9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quickbase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class QuickBase {
3333
'includeRids' => true,
3434
'returnPercentage' => false,
3535
'fmt' => 'structured',
36-
'encoding' => 'UTF-8',
36+
'encoding' => 'ISO-8859-1',
3737
'dbidAsParam' => false
3838
),
3939

0 commit comments

Comments
 (0)