From c03ebe57279751826e883373a63d12c8065b7556 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Thu, 14 Jun 2012 16:14:32 +0000 Subject: Also cache localizedfields info, fixes bug with field localization --- it_dbi.class | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/it_dbi.class b/it_dbi.class index 3ec2978..fbe9690 100644 --- a/it_dbi.class +++ b/it_dbi.class @@ -791,10 +791,14 @@ function _get_field_info() $state = it_dbi::_state_get($dbid); # State could have been modified by query above $state['fields'][$this->_p['table']] = $this->_fields; $state['convertfunc'][$this->_p['table']] = $this->_convertfunc; + $state['localizedfields'][$this->_p['table']] = $this->_localizedfields; it_dbi::_state_put($dbid, $state); } else # Existing _fields, copy other info too + { $this->_convertfunc = $state['convertfunc'][$this->_p['table']]; + $this->_localizedfields = $state['localizedfields'][$this->_p['table']]; + } foreach((array)$this->_fields as $field) { -- cgit v1.2.3