Currently, transliteration action will be performed as long as the module is enabled. However, there is a setting variable to control the behavior in transliteration. Sometimes, we need to enable transliteration module to use its functions internally and don't want to apply to all uploaded files.

Just change code from
if (module_exists('transliteration')) {
to
if (module_exists('transliteration') && variable_get('transliteration_file_uploads', TRUE)) {

CommentFileSizeAuthor
plupload-20130904.patch552 byteshgneng
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

slashrsm’s picture

Status: Patch (to be ported) » Fixed

Committed. Thanks.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

  • Commit 0e1d08e on 7.x-1.x, 8.x-1.x authored by hgneng, committed by slashrsm:
    Issue #2081263 by hgneng: Fixed Check transliteration setting before...