diff options
| author | jmoenig <jens@moenig.org> | 2013-11-26 09:43:47 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2013-11-26 09:43:47 +0100 |
| commit | 71b7001caaceb704a9ca04f111b7913a032336d4 (patch) | |
| tree | 207fe6c67ebf20fc326646b8167dd406dd1721e5 /cloud.js | |
| parent | 540ae2fcf413dcbfbee0ed78762ece696c621f57 (diff) | |
| download | snap-yow-71b7001caaceb704a9ca04f111b7913a032336d4.tar.gz snap-yow-71b7001caaceb704a9ca04f111b7913a032336d4.zip | |
fixed #125 (encode email address when signing up)
thanks, Nathan!
Diffstat (limited to 'cloud.js')
| -rw-r--r-- | cloud.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,7 +29,7 @@ /*global modules, IDE_Morph, SnapSerializer, hex_sha512, alert, nop*/ -modules.cloud = '2013-November-07'; +modules.cloud = '2013-November-26'; // Global stuff @@ -82,7 +82,7 @@ Cloud.prototype.signup = function ( + '&Username=' + encodeURIComponent(username) + '&Email=' - + email, + + encodeURIComponent(email), true ); request.setRequestHeader( |
