FIX: automatic redirect after activating account on subfolder installs

This commit is contained in:
Neil Lalonde 2015-12-15 14:46:35 -05:00
parent 05b12d108f
commit 2d7c3067ba
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<script language="javascript">
(function() {
setTimeout(function() {
window.location.href = '/';
window.location.href = '<%= path("/") %>';
}, 2000);
})();
</script>