Larval framework upated to v5.6.33
Updated laravel frameowrk version to as suggested for security patch update which was released in v5.6.30
This commit is contained in:
		| @@ -66,9 +66,9 @@ class FileSessionHandler implements SessionHandlerInterface | ||||
|      */ | ||||
|     public function read($sessionId) | ||||
|     { | ||||
|         if ($this->files->exists($path = $this->path.'/'.$sessionId)) { | ||||
|             if (filemtime($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) { | ||||
|                 return $this->files->get($path, true); | ||||
|         if ($this->files->isFile($path = $this->path.'/'.$sessionId)) { | ||||
|             if ($this->files->lastModified($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) { | ||||
|                 return $this->files->sharedGet($path); | ||||
|             } | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Manish Verma
					Manish Verma