Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/flow-flo.../includes/db/migratio...
File: FFMigration_2_6.php
<?php namespace flow\db\migrations;
[0] Fix | Delete
use la\core\db\migrations\ILADBMigration;
[1] Fix | Delete
[2] Fix | Delete
if ( ! defined( 'WPINC' ) ) die;
[3] Fix | Delete
/**
[4] Fix | Delete
* Flow-Flow.
[5] Fix | Delete
*
[6] Fix | Delete
* @package FlowFlow
[7] Fix | Delete
* @author Looks Awesome <email@looks-awesome.com>
[8] Fix | Delete
*
[9] Fix | Delete
* @link http://looks-awesome.com
[10] Fix | Delete
* @copyright Looks Awesome
[11] Fix | Delete
*/
[12] Fix | Delete
class FFMigration_2_6 implements ILADBMigration{
[13] Fix | Delete
[14] Fix | Delete
public function version() {
[15] Fix | Delete
return '2.6';
[16] Fix | Delete
}
[17] Fix | Delete
[18] Fix | Delete
public function execute($conn, $manager) {
[19] Fix | Delete
$options = $manager->getOption('options', true);
[20] Fix | Delete
if ($options === false) $options = array();
[21] Fix | Delete
if (!isset($options['general-settings-ipv4'])) $options['general-settings-ipv4'] = 'nope';
[22] Fix | Delete
if (!isset($options['general-settings-https'])) $options['general-settings-https'] = 'nope';
[23] Fix | Delete
$manager->setOption('options', $options, true);
[24] Fix | Delete
}
[25] Fix | Delete
}
[26] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function