aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@primarypad.com>2010-03-27 18:46:40 +0000
committerroot <root@primarypad.com>2010-03-27 18:46:40 +0000
commitbb52de2259c58d36265c8af63c5c141e07ed466a (patch)
tree8ff32ed243e52ea546ef04d8fbce3905a72380d8
parent8ee63d95651a1cd673ce82794db64ae1d61f78b7 (diff)
downloadetherpad-bb52de2259c58d36265c8af63c5c141e07ed466a.tar.gz
etherpad-bb52de2259c58d36265c8af63c5c141e07ed466a.tar.xz
etherpad-bb52de2259c58d36265c8af63c5c141e07ed466a.zip
Change Pro Account login to HTTP instead of HTTPS
Diffstat (limited to '')
-rw-r--r--etherpad/src/etherpad/pro/pro_accounts.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/etherpad/src/etherpad/pro/pro_accounts.js b/etherpad/src/etherpad/pro/pro_accounts.js
index cdecd0d..97585a3 100644
--- a/etherpad/src/etherpad/pro/pro_accounts.js
+++ b/etherpad/src/etherpad/pro/pro_accounts.js
@@ -512,7 +512,7 @@ function getFullNameById(id) {
function getTempSigninUrl(account, tempPass) {
return [
- 'https://', httpsHost(pro_utils.getFullProHost()), '/ep/account/sign-in?',
+ 'http://', httpsHost(pro_utils.getFullProHost()), '/ep/account/sign-in?',
'uid=', account.id, '&tp=', tempPass
].join('');
}