Index: kbase.php =================================================================== --- kbase.php (revision 13128) +++ kbase.php (working copy) @@ -572,7 +572,7 @@ if (array_key_exists('formatter', $options)) { $formatter_class = $options['formatter']; - $value = $formatter_class == 'kMultiLanguage' ? '' : $this->GetDBField($name); + $value = ($formatter_class == 'kMultiLanguage') && !preg_match('/^l[0-9]+_/', $name) ? '' : $this->GetDBField($name); $formatter =& $this->Application->recallObject($formatter_class); return $formatter->Format($value, $name, $this, $format);