修复 重新生成session_id bug

将私有方法修改为公有方法
This commit is contained in:
uuling
2017-07-18 15:07:27 +08:00
committed by ThinkPHP
parent 14de36b6f4
commit 860c85bda2

View File

@@ -347,7 +347,7 @@ class Session
* @param bool $delete 是否删除关联会话文件
* @return void
*/
private static function regenerate($delete = false)
public static function regenerate($delete = false)
{
session_regenerate_id($delete);
}