Skip to content

Commit

Permalink
Fixed issue #6693: Error whan saving global settings with IE8 only
Browse files Browse the repository at this point in the history
Dev: replace .trim() function by $.trim javascript function. (.trim soesn't exist in IE).
Dev: IE8 on Linux don't work. Only IE6.
  • Loading branch information
Shnoulle committed Oct 13, 2012
1 parent 933298b commit 6757b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/admin/globalsettings.js
Expand Up @@ -31,7 +31,7 @@ function UpdateRestrictedLanguages(){
$("#includedLanguages option").each(function(){
aString=aString+' '+$(this).val();
});
$('#restrictToLanguages').val(aString.trim());
$('#restrictToLanguages').val($.trim(aString));
}

function Emailchange(ui,evt)
Expand Down

0 comments on commit 6757b21

Please sign in to comment.