diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2021-02-25 15:28:27 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2021-02-25 15:28:27 +0300 |
| commit | efd196839a20ae7e38be227c62b9c134ddec4bea (patch) | |
| tree | ce669c677cd793165af87e71e49adade319baa3b /api/index.php | |
| parent | 1464abbbfc73171bd65e13d3b6e07511f5663815 (diff) | |
stop caching schema version entirely, fix some session_start() related warnings
Diffstat (limited to 'api/index.php')
| -rw-r--r-- | api/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/index.php b/api/index.php index d85a1103c..430082f16 100644 --- a/api/index.php +++ b/api/index.php @@ -23,7 +23,7 @@ if (!empty($_REQUEST["sid"])) { session_id($_REQUEST["sid"]); - @session_start(); + session_start(); } startup_gettext(); |