From 71b7001caaceb704a9ca04f111b7913a032336d4 Mon Sep 17 00:00:00 2001 From: jmoenig Date: Tue, 26 Nov 2013 09:43:47 +0100 Subject: fixed #125 (encode email address when signing up) thanks, Nathan! --- cloud.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cloud.js') diff --git a/cloud.js b/cloud.js index 62dbc3e..5ff2f77 100644 --- a/cloud.js +++ b/cloud.js @@ -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( -- cgit v1.3.1