• Is there a chance this plug-in will support PHP 7 in the near future?

    PHP Fatal error: Uncaught Error: Call to undefined function split() in /srv/users/xxx/apps/xxx/public/wp-content/plugins/bulk-add-terms/class-ts-bulk-add-terms.php:243

Viewing 1 replies (of 1 total)
  • Niek

    (@nvomedia)

    I have solved this to change this file: bulk-add-terms/class-ts-bulk-add-terms.php.

    Search line $lines = split( "\n", $terms );

    and replaced it with

    $lines = explode(PHP_EOL, $terms );

    The split function is removed in PHP7, so it won’t work anymore.

Viewing 1 replies (of 1 total)
  • The topic ‘PHP 7 support’ is closed to new replies.