From d6f7343c97ab28c88ade2b4e4edf0ac29f7c5117 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 04 Oct 2011 00:29:48 +0000 Subject: send an exception when a session has timed out on the server side --- (limited to 'backend') diff --git a/backend/php/src/index.php b/backend/php/src/index.php index eb3d75a..35752f4 100644 --- a/backend/php/src/index.php +++ b/backend/php/src/index.php @@ -721,8 +721,11 @@ error_log("message"); } //============================================================= - } else { + } else if (isset($_SESSION['K'])) { $result["error"] = "Wrong shared secret!"; + } else { + $result["result"] = "EXCEPTION"; + $result["message"] = "Trying to communicate without an active connection"; } break; @@ -741,4 +744,4 @@ error_log("default"); echo(json_encode($result)); error_log("result: ".json_encode($result)); -?> \ No newline at end of file +?> -- cgit v0.9.0.2