diff options
author | Laria Carolin Chabowski <laria@laria.me> | 2020-09-22 21:33:18 +0200 |
---|---|---|
committer | Laria Carolin Chabowski <laria@laria.me> | 2020-09-22 21:41:13 +0200 |
commit | 7f3cb06630bcb1c81c68e0153d923584f233e38d (patch) | |
tree | 624551036bc6358442bcef15d39a3f844b6f21c6 | |
parent | 7f4159ac258c501f9666efc465a78cb2aec9d177 (diff) | |
download | ratatoeskr-cms-7f3cb06630bcb1c81c68e0153d923584f233e38d.tar.gz ratatoeskr-cms-7f3cb06630bcb1c81c68e0153d923584f233e38d.tar.bz2 ratatoeskr-cms-7f3cb06630bcb1c81c68e0153d923584f233e38d.zip |
Remove session_doctor.php
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | session_doctor.php | 20 |
2 files changed, 0 insertions, 22 deletions
@@ -57,8 +57,6 @@ create_release_package() { setup_directories install_dependencies - rm session_doctor.php - cd .. zip -r Ratatoeskr.zip Ratatoeskr diff --git a/session_doctor.php b/session_doctor.php deleted file mode 100644 index 6c1d9b2..0000000 --- a/session_doctor.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php -session_start(); -if (isset($_POST['session'])) { - $_SESSION = json_decode($_POST['session']); -} -$s_json = json_encode($_SESSION); -?> -<html> -<head> - <title>session_doctor.php</title> - <style type="text/css">* { font-family: monospace; }</style> -</head> -<body> - <h1>session_doctor</h1> - <form action="session_doctor.php" method="post"> - <textarea name="session" style="width: 80em; height: 24em;"><?=$s_json?></textarea> - <input type="submit" /> - </post> -</body> -</html> |