Index: branches/unlabeled/unlabeled-1.9.2/kernel/units/categories/categories_item.php =================================================================== diff -u -N -r5615 -r5635 --- branches/unlabeled/unlabeled-1.9.2/kernel/units/categories/categories_item.php (.../categories_item.php) (revision 5615) +++ branches/unlabeled/unlabeled-1.9.2/kernel/units/categories/categories_item.php (.../categories_item.php) (revision 5635) @@ -133,8 +133,8 @@ { if ( !$this->GetDBField('AutomaticFilename') && $this->GetDBField('Filename') ) return false; - $title_field = $this->Application->getUnitOption($this->Prefix, 'TitleField'); - $name = $this->stripDisallowed( $this->GetDBField($title_field) ); + $ml_formatter =& $this->Application->recallObject('kMultiLanguage'); + $name = $this->stripDisallowed( $this->GetDBField( $ml_formatter->LangFieldName('Name', true) ) ); if ( $name != $this->GetDBField('Filename') ) $this->SetDBField('Filename', $name); }