hi
i'm going /admin/content/node-type/_____/fields and change my filefild settings

open FileField Path settings/File name cleanup settings and uncheck Transliterate. (Transliterate File name.) thats your setting?

now new attach tranliterated, this settings don't care it :(

i want transliterate some types fields, but another must be untranliterated

Comments

smk-ka’s picture

Project: Transliteration » File (Field) Paths
Version: 6.x-3.x-dev » 6.x-1.x-dev
Component: Miscellaneous » Code
Status: Active » Closed (won't fix)

No, this seems to be a bug in the current release of FileField Paths. Either update to the latest development snapshot where it has been fixed, or look for line 577:
if (module_exists('transliteration') && isset($settings['transliterate']) && $$settings['transliterate']) {
and replace it with
if (module_exists('transliteration') && isset($settings['transliterate']) && $settings['transliterate']) {
Note the bogus double $$ in front of the last $settings variable.