summaryrefslogtreecommitdiff
path: root/it_dbi.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_dbi.class')
-rw-r--r--it_dbi.class16
1 files changed, 2 insertions, 14 deletions
diff --git a/it_dbi.class b/it_dbi.class
index 2c16b90..ceb5241 100644
--- a/it_dbi.class
+++ b/it_dbi.class
@@ -729,8 +729,8 @@ function iterate()
$this->_data[$field] = $value;
unset($this->_data['dyncols']);
- foreach ($this->_data as $field => $value)
- $this->$field = (isset($value) && $this->_convertfunc[$field]) ? ($this->_data[$field] = $this->_convertfunc[$field]($value)) : $value;
+ foreach (static::_read_postprocess($this->_data) as $field => $value)
+ $this->$field = $this->_data[$field] = (isset($value) && $this->_convertfunc[$field]) ? $this->_convertfunc[$field]($value) : $value;
if ($localizedfields)
{
@@ -762,18 +762,6 @@ function iterate()
$this->_result->close();
}
- if (is_array($this->_data))
- {
- $originalfields = array_keys($this->_data);
- $this->_data = static::_read_postprocess($this->_data, $this);
- # Remove fields which have been unset in _read_postprocess
- foreach (array_diff($originalfields, array_keys($this->_data)) as $field)
- unset($this->$field);
- # Update fields as they may have been changed in _read_postprocess
- foreach ($this->_data as $field => $value)
- $this->$field = $value;
- }
-
$this->_read_post_process();
}
else