summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-11-26 09:43:47 +0100
committerjmoenig <jens@moenig.org>2013-11-26 09:43:47 +0100
commit71b7001caaceb704a9ca04f111b7913a032336d4 (patch)
tree207fe6c67ebf20fc326646b8167dd406dd1721e5
parent540ae2fcf413dcbfbee0ed78762ece696c621f57 (diff)
downloadsnap-71b7001caaceb704a9ca04f111b7913a032336d4.tar.gz
snap-71b7001caaceb704a9ca04f111b7913a032336d4.zip
fixed #125 (encode email address when signing up)
thanks, Nathan!
-rw-r--r--cloud.js4
-rwxr-xr-xhistory.txt4
2 files changed, 6 insertions, 2 deletions
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(
diff --git a/history.txt b/history.txt
index e462db3..050960a 100755
--- a/history.txt
+++ b/history.txt
@@ -2006,3 +2006,7 @@ ______
* Morphic: Don’t trigger events for eclipsed morphs (whose parent-chain contains a hidden morph)
* Blocks: Prevent „hide“ menu option for non-palette template blocks
* new Catalan translation! Yay, thanks, Bernat Romagosa Carrasquer!!
+
+132226
+------
+* Cloud: fixed #125 (encode email address when signing up), thanks, Nathan!