summaryrefslogtreecommitdiff
path: root/src/static/js/pad_impexp.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/static/js/pad_impexp.js')
-rw-r--r--src/static/js/pad_impexp.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/static/js/pad_impexp.js b/src/static/js/pad_impexp.js
index 77f1eb28..96761570 100644
--- a/src/static/js/pad_impexp.js
+++ b/src/static/js/pad_impexp.js
@@ -188,7 +188,8 @@ var padimpexp = (function()
pad = _pad;
//get /p/padname
- var pad_root_path = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname);
+ // if /p/ isn't available due to a rewrite we use the clientVars padId
+ var pad_root_path = new RegExp(/.*\/p\/[^\/]+/).exec(document.location.pathname) || clientVars.padId;
//get http://example.com/p/padname without Params
var pad_root_url = document.location.protocol + '//' + document.location.host + document.location.pathname;