From d42074b6203ce5b361fbfed76897244ca6363d27 Mon Sep 17 00:00:00 2001 From: Alexander Demidov Date: Mon, 28 Jul 2014 09:25:34 +0400 Subject: [PATCH] prepend notice error on session_start --- Session/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Session/Session.php b/Session/Session.php index b09c37e..22e06d9 100644 --- a/Session/Session.php +++ b/Session/Session.php @@ -178,7 +178,7 @@ class Session return; } self::$started = true; - session_start(); + @session_start(); } /**