Jump to content

Module Manager Error PS 8.0.1


Recommended Posts

Guten Morgen,

 

nach dem Update auf 8.0.1 geht der Module Manager nicht mehr.

Ich erhalte im debug den Fehler:

Symfony\Component\ErrorHandler\Error\ FatalError

in modules/netreviews/NetReviewsModel.php (line 699)

 

        $max = self::strlen($text);

 

        $buf = "";

        for ($i = 0; $i < $max; $i++) {

            $c1 = $text{$i};

            if ($c1>="\xc0") { //Should be converted to UTF8, if it's not UTF8 already

                $c2 = $i+1 >= $max? "\x00" : $text{$i+1};

                $c3 = $i+2 >= $max? "\x00" : $text{$i+2};

                $c4 = $i+3 >= $max? "\x00" : $text{$i+3};

                if ($c1 >= "\xc0" & $c1 <= "\xdf") { //looks like 2 bytes UTF8

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...