Elxis CMS Forum

Support => Elxis 4.x/5.x DEV => Topic started by: maple on November 06, 2012, 12:35:14

Title: I can't insert an hyphen - Media Manager [SOLVED]
Post by: maple on November 06, 2012, 12:35:14
Hello,

into Media Manager, when I try rename the filename, I can't insert an hyphen "-". It's deleted automatically.

Thanks
Title: Re: I can't insert an hyphen - Media Manager
Post by: datahell on November 06, 2012, 13:14:08
Use dashes.
Title: Re: I can't insert an hyphen - Media Manager
Post by: maple on November 06, 2012, 13:55:29
Middle dash "-" doens't work. The examples pictures, they're a lot of dashes like "machu-picchu.jpg", "taj-mahal.jpg" and so on.
I can upload a photo with middle dashes correctly, but I can't insert a middle dash renaming a filename from Media manager.
Title: Re: I can't insert an hyphen - Media Manager
Post by: datahell on November 06, 2012, 18:07:08
Fixed!
Do this to fix it:
Open components/com_emedia/js/emedia.js
Go to line 105
Replace this:
cleaned = cleaned.replace(/[^_a-zA-Z0-9]/g, "");
With this:
cleaned = cleaned.replace(/[^\-\_a-zA-Z0-9]/g, "");

Save the file and hit control+f5 in your browser to refresh its cache. It should work fine now.
Title: Re: I can't insert an hyphen - Media Manager
Post by: maple on November 06, 2012, 18:15:27
Perfect, works well!

Thanks a lot!

pd: perhaps could be updated for the next revision.
Title: Re: I can't insert an hyphen - Media Manager [SOLVED]
Post by: datahell on November 06, 2012, 18:39:48
I already updated Elxis 4.0, this is why I wrote fixed  :)
Title: Re: I can't insert an hyphen - Media Manager [SOLVED]
Post by: maple on November 06, 2012, 18:48:29
I already updated Elxis 4.0, this is why I wrote fixed  :)

Ooooooooh   ;D