f3-factory / fatfree-core

Fat-Free Framework core library
GNU General Public License v3.0
207 stars 88 forks source link

[ PHP 8+ ] Undefined variable $hash #358

Closed medienhochdrei closed 1 year ago

medienhochdrei commented 1 year ago

[base.php]

Solved by changing the following ...

function resolve($node,array $hive=NULL,$ttl=0,$persist=FALSE,$escape=NULL) {
  $fw=$this->fw;

... into ...

function resolve($node,array $hive=NULL,$ttl=0,$persist=FALSE,$escape=NULL) {
  $hash=null;
  $fw=$this->fw;
Rayne commented 1 year ago

If that's all, create a pull request. :+1:

medienhochdrei commented 1 year ago

Done.