Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-12-07 21:55:45 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-12-07 21:55:45 +0300
commitb15d77c93459743e5e3e29ebefeba0d6fca11b96 (patch)
tree011555e78920a711171d3e3729900f2f96769f59 /core
parent4100263bd6c39c48625ffc13997f37c056700f00 (diff)
parent69ab047f89359c21c60cd2eb42d62198b6d11b27 (diff)
Merge pull request #21015 from owncloud/update-redirecttocorrectpage
Redirect to correct URL after updating
Diffstat (limited to 'core')
-rw-r--r--core/js/update.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js
index 090f8fa5d23..1626b6f2c49 100644
--- a/core/js/update.js
+++ b/core/js/update.js
@@ -84,7 +84,7 @@
.append(t('core', 'The update was successful. Redirecting you to ownCloud now.'))
.appendTo($el);
setTimeout(function () {
- OC.redirect(OC.webroot);
+ OC.redirect(OC.webroot + '/');
}, 3000);
}
});