Bug 747412 - Installing Favimon does not show the right parenthesis on the desktop shortcut or start menu [r=felipe]

Strip whitespace at the end instead of trailing non-alphanumeric.
This commit is contained in:
Edward Lee 2012-04-26 22:11:43 -07:00
parent 54471a2d8d
commit 18bf3a0b8e

View File

@ -688,7 +688,7 @@ function stripStringForFilename(aPossiblyBadFilenameString) {
//strip everything from the front up to the first [0-9a-zA-Z]
let stripFrontRE = new RegExp("^\\W*","gi");
let stripBackRE = new RegExp("\\W*$","gi");
let stripBackRE = new RegExp("\\s*$","gi");
let stripped = aPossiblyBadFilenameString.replace(stripFrontRE, "");
stripped = stripped.replace(stripBackRE, "");