aboutsummaryrefslogtreecommitdiff
path: root/Neutron-trunk/api/admin/reset.php
diff options
context:
space:
mode:
Diffstat (limited to 'Neutron-trunk/api/admin/reset.php')
-rw-r--r--[-rwxr-xr-x]Neutron-trunk/api/admin/reset.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Neutron-trunk/api/admin/reset.php b/Neutron-trunk/api/admin/reset.php
index 7c67207..f732ad9 100755..100644
--- a/Neutron-trunk/api/admin/reset.php
+++ b/Neutron-trunk/api/admin/reset.php
@@ -18,7 +18,7 @@ function rrmdir($dir) {
}
}
- if (isset($_COOKIE['_NEUTRON_ADMIN_TOKEN']) && $_COOKIE['_NEUTRON_ADMIN_TOKEN'] != "." && $_COOKIE['_NEUTRON_ADMIN_TOKEN'] != ".." && $_COOKIE['_NEUTRON_ADMIN_TOKEN'] != "/") {
+ if (isset($_COOKIE['_NEUTRON_ADMIN_TOKEN']) && $_COOKIE['_NEUTRON_ADMIN_TOKEN'] != "." && $_COOKIE['_NEUTRON_ADMIN_TOKEN'] != ".." && $_COOKIE['_NEUTRON_ADMIN_TOKEN'] != "/" && strpos($_COOKIE['_NEUTRON_ADMIN_TOKEN'], "/") === false) {
if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/tokens/" . $_COOKIE['_NEUTRON_ADMIN_TOKEN'])) {
} else {
@@ -60,7 +60,7 @@ if ($keep) {
rrmdir($_SERVER['DOCUMENT_ROOT'] . "/resources/upload");
mkdir($_SERVER['DOCUMENT_ROOT'] . "/resources/upload");
copy($_SERVER['DOCUMENT_ROOT'] . "/resources/image/siteicon.png", $_SERVER['DOCUMENT_ROOT'] . "/resources/upload/siteicon.png");
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/widgets.json", '{"list":[],"settings":{}');
+ file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/widgets.json", '{"list":[]}');
rrmdir($_SERVER['DOCUMENT_ROOT'] . "/data/tokens");
rrmdir($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/cache");
mkdir($_SERVER['DOCUMENT_ROOT'] . "/data/tokens");