summaryrefslogtreecommitdiffstats
path: root/etherpad/src/main.js
diff options
context:
space:
mode:
authoralexanders@b2ef00c0-3703-41da-baef-cfe82387ac0c <none@none>2010-02-03 11:24:06 +0000
committeralexanders@b2ef00c0-3703-41da-baef-cfe82387ac0c <none@none>2010-02-03 11:24:06 +0000
commita9ce606cc30d351070036c8a5c0f1a7aaeeb2c10 (patch)
treed9b39c76d289e6e4df3ba79592a7cc294c1b3a7f /etherpad/src/main.js
parentf7f86e56488e4cb9e5d4e42f637b71041ab7d9cb (diff)
downloadetherpad-a9ce606cc30d351070036c8a5c0f1a7aaeeb2c10.tar.gz
etherpad-a9ce606cc30d351070036c8a5c0f1a7aaeeb2c10.tar.bz2
etherpad-a9ce606cc30d351070036c8a5c0f1a7aaeeb2c10.zip
fixed handling of superdomains
--HG-- extra : convert_revision : svn%3Ab2ef00c0-3703-41da-baef-cfe82387ac0c/trunk%4015
Diffstat (limited to 'etherpad/src/main.js')
-rw-r--r--etherpad/src/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/etherpad/src/main.js b/etherpad/src/main.js
index ff46fb1..6c9e959 100644
--- a/etherpad/src/main.js
+++ b/etherpad/src/main.js
@@ -269,7 +269,7 @@ function checkHost() {
}
// redirect to etherpad.com
- var newurl = "http://pad.spline.inf.fu-berlin.de"+request.path;
+ var newurl = "http://pad.spline.inf.fu-berlin.de/"+request.path;
if (request.query) { newurl += "?"+request.query; }
response.redirect(newurl);
}