fuel / core

Fuel PHP Framework - The core of the Fuel v1 framework
http://fuelphp.com
811 stars 344 forks source link

Fix redis connection issue #2171

Closed Rin3917 closed 2 years ago

Rin3917 commented 2 years ago

Fix Redis connection issue in 8.1 mentionned on this thread

WanWizard commented 2 years ago

It looks like the root cause of this is a misplaced bracket

if (($reply = fgets($this->connection, 512) === false))

should be

if (($reply = fgets($this->connection, 512)) === false)

but I can live with this fix :grin: