summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-28 08:06:21 +0400
committerAndrew Dolgov <[email protected]>2013-03-28 08:06:21 +0400
commit5160620c8a3c940688f60cc32abb2387a87139dd (patch)
treec11971f065a9772bca5fe1071e4c295f39b9d43b /api
parentf820f205d0ec1c5ce9027e49755fc8642b0c5b42 (diff)
only autostart session if login cookie exists
Diffstat (limited to 'api')
-rw-r--r--api/index.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/api/index.php b/api/index.php
index 147157946..d248c4f85 100644
--- a/api/index.php
+++ b/api/index.php
@@ -46,10 +46,9 @@
if ($_REQUEST["sid"]) {
session_id($_REQUEST["sid"]);
+ @session_start();
}
- @session_start();
-
if (!init_connection($link)) return;
$method = strtolower($_REQUEST["op"]);