Browse Source

mute warnings caused by session_start() to deal with potential ps_files_cleanup_dir stuff

Andrew Dolgov 11 năm trước cách đây
mục cha
commit
acfbab375d
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      api/index.php
  2. 1 1
      include/sessions.php

+ 1 - 1
api/index.php

@@ -48,7 +48,7 @@
 		session_id($_REQUEST["sid"]);
 	}
 
-	session_start();
+	@session_start();
 
 	if (!init_connection($link)) return;
 

+ 1 - 1
include/sessions.php

@@ -105,6 +105,6 @@
 	session_set_cookie_params(SESSION_COOKIE_LIFETIME);
 
 	if (!defined('TTRSS_SESSION_NAME') || TTRSS_SESSION_NAME != 'ttrss_api_sid') {
-		session_start();
+		@session_start();
 	}
 ?>