summaryrefslogtreecommitdiff
path: root/backend/php
Unidiff
Diffstat (limited to 'backend/php') (more/less context) (ignore whitespace changes)
-rw-r--r--backend/php/src/index.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/backend/php/src/index.php b/backend/php/src/index.php
index eb3d75a..58c10a9 100644
--- a/backend/php/src/index.php
+++ b/backend/php/src/index.php
@@ -720,10 +720,13 @@ error_log("message");
720 $result["result"] = $parameters; 720 $result["result"] = $parameters;
721 } 721 }
722 722
723 //============================================================= 723 //=============================================================
724 } else { 724 } else if (isset($_SESSION['K'])) {
725 $result["error"] = "Wrong shared secret!"; 725 $result["error"] = "Wrong shared secret!";
726 } else {
727 $result["result"] = "EXCEPTION";
728 $result["message"] = "Trying to communicate without an active connection";
726 } 729 }
727 break; 730 break;
728 731
729 case "logout": 732 case "logout":
@@ -740,5 +743,5 @@ error_log("default");
740 session_write_close(); 743 session_write_close();
741 744
742 echo(json_encode($result)); 745 echo(json_encode($result));
743error_log("result: ".json_encode($result)); 746error_log("result: ".json_encode($result));
744?> \ No newline at end of file 747?>