Skip to content

Commit

Permalink
Bug fix to support spaces in the product name
Browse files Browse the repository at this point in the history
  • Loading branch information
robrighter committed Mar 14, 2011
1 parent e064cce commit 84c0922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/amazon-fps-cbui-pipeline.js
Expand Up @@ -234,7 +234,7 @@
// UTILS //
//////////////////////////////////////////////
function urlEncode(toencode){
return escape(toencode).replace(/\//g,'%2F');
return escape(toencode).replace(/\//g,'%2F').replace(/\+/g, '%2B');
}


Expand Down

0 comments on commit 84c0922

Please sign in to comment.