File extensions are added to node names upon upload. (ex. image.jpg has a node title of imagejpg) when uploaded. Ignores transliteration, or other modules which are meant to rewrite node titles. Anybody else have this problem?

Nikk Wong

Comments

axe312’s picture

Status: Active » Postponed (maintainer needs more info)

Well, tokens simple do not provide a token without the extension.

Transliteration is working very well for me.

mrcniceguy’s picture

I added the following code after line 238 in the module file bulk_media_upload.upload.inc

  //Attempting to Remove the .mp3 or simply the file extension 
  $label = preg_replace('/\\.[^.\\s]{3,4}$/', '',$label);

Its working for Me.