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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ncp-web/index.php')
-rw-r--r--ncp-web/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/ncp-web/index.php b/ncp-web/index.php
index 21ce5475..fc909a68 100644
--- a/ncp-web/index.php
+++ b/ncp-web/index.php
@@ -13,14 +13,14 @@ ob_start();
// check for encrypted data to present unlock dialog
exec("bash -c 'source /usr/local/etc/library.sh; needs_decrypt'", $output, $ret);
if ($ret == 0) {
- header("Location: decrypt");
+ header("Location: /decrypt");
exit();
}
// redirect to activation first time
exec("a2query -s ncp-activation", $output, $ret);
if ($ret == 0) {
- header("Location: activate");
+ header("Location: /activate");
exit();
}