Index: branches/RC/core/kernel/db/db_tag_processor.php =================================================================== diff -u -r9713 -r9767 --- branches/RC/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 9713) +++ branches/RC/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 9767) @@ -604,14 +604,12 @@ } $format = getArrayValue($params, 'format'); - if( !$format || $format == '$format' ) - { + if (!$format || $format == '$format') { $format = null; } - else - { - if(preg_match("/_regional_(.*)/", $format, $regs)) - { + else { + // maybe duplicate code, test if code in kDateFormatter::SetMixedFormat works like code below (note by Alex) + if (preg_match("/_regional_(.*)/", $format, $regs)) { $lang =& $this->Application->recallObject('lang.current'); $format = $lang->GetDBField($regs[1]); }