diff options
author | Silvio <silvio@devlet.com.br> | 2010-05-06 16:47:07 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-05-06 16:47:07 -0300 |
commit | 2b47f07b04bd346539bf10347e72a9a92873120c (patch) | |
tree | 4758fc2cd92d1678e2c0404a5698a452d91993e8 /tests/csv.php | |
parent | 3fe5626706870c2f078dd7233d60b59290622346 (diff) | |
download | cinisis-2b47f07b04bd346539bf10347e72a9a92873120c.tar.gz cinisis-2b47f07b04bd346539bf10347e72a9a92873120c.tar.bz2 |
Charset conversion fixes
Diffstat (limited to 'tests/csv.php')
-rw-r--r-- | tests/csv.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/csv.php b/tests/csv.php index 1d3c5cb..42e45f3 100644 --- a/tests/csv.php +++ b/tests/csv.php @@ -43,6 +43,11 @@ if ($isis->db) { // Format output. for ($n=1; $n <= $rows; $n++) { + // FIXME: fbe db corruption? + if ($n == 1494) { + continue; + } + $result = $isis->db->read($n); foreach ($format['fields'] as $field) { if (is_array($result[$field['name']])) { |