• If anyone is still using this plugin, there is a problem with PHP8.

    In multilingual-press/inc/installation/Mlp_Self_Check.php on line 290 you need to change the line:

    if ( version_compare( $current_version, $last_version, '=<' ) ) {

    to:

    if ( version_compare( $current_version, $last_version, '<=' ) ) {

    Please note the small change in the last parameter (“=<” changed to “<=”).

    See: https://www.php.net/manual/de/function.version-compare.php

Viewing 3 replies - 1 through 3 (of 3 total)
  • multilingual-press broke my entire admin plugin overview page. Thanks for sharing this solution!

    Thank you for posting this. Just saved my bacon for a while longer! Only my admin plugins page seemed to be affected, but now all is good under php8.

    Korveld

    (@teidar)

    Man, you’re lifesaver) Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘PHP8 compatibility’ is closed to new replies.