Closed (won't fix)
Project:
File (Field) Paths
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Oct 2009 at 02:06 UTC
Updated:
4 Oct 2009 at 16:12 UTC
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
Comment #1
smk-ka commentedNo, 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.