fixed #125 (encode email address when signing up)

thanks, Nathan!
pull/3/merge
jmoenig 2013-11-26 09:43:47 +01:00
rodzic 540ae2fcf4
commit 71b7001caa
2 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -29,7 +29,7 @@
/*global modules, IDE_Morph, SnapSerializer, hex_sha512, alert, nop*/ /*global modules, IDE_Morph, SnapSerializer, hex_sha512, alert, nop*/
modules.cloud = '2013-November-07'; modules.cloud = '2013-November-26';
// Global stuff // Global stuff
@ -82,7 +82,7 @@ Cloud.prototype.signup = function (
+ '&Username=' + '&Username='
+ encodeURIComponent(username) + encodeURIComponent(username)
+ '&Email=' + '&Email='
+ email, + encodeURIComponent(email),
true true
); );
request.setRequestHeader( request.setRequestHeader(

Wyświetl plik

@ -2006,3 +2006,7 @@ ______
* Morphic: Dont trigger events for eclipsed morphs (whose parent-chain contains a hidden morph) * Morphic: Dont trigger events for eclipsed morphs (whose parent-chain contains a hidden morph)
* Blocks: Prevent „hide“ menu option for non-palette template blocks * Blocks: Prevent „hide“ menu option for non-palette template blocks
* new Catalan translation! Yay, thanks, Bernat Romagosa Carrasquer!! * new Catalan translation! Yay, thanks, Bernat Romagosa Carrasquer!!
132226
------
* Cloud: fixed #125 (encode email address when signing up), thanks, Nathan!