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/wordpres.../admin/import/plugins
File: class-import-premium-seo-pack.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* File with the class to handle data from Premium SEO Pack.
[2] Fix | Delete
*
[3] Fix | Delete
* @package WPSEO\Admin\Import\Plugins
[4] Fix | Delete
*/
[5] Fix | Delete
[6] Fix | Delete
/**
[7] Fix | Delete
* Class with functionality to import & clean Premium SEO Pack post metadata.
[8] Fix | Delete
*/
[9] Fix | Delete
class WPSEO_Import_Premium_SEO_Pack extends WPSEO_Import_Squirrly {
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* The plugin name.
[13] Fix | Delete
*
[14] Fix | Delete
* @var string
[15] Fix | Delete
*/
[16] Fix | Delete
protected $plugin_name = 'Premium SEO Pack';
[17] Fix | Delete
[18] Fix | Delete
/**
[19] Fix | Delete
* WPSEO_Import_Premium_SEO_Pack constructor.
[20] Fix | Delete
*/
[21] Fix | Delete
public function __construct() {
[22] Fix | Delete
parent::__construct();
[23] Fix | Delete
[24] Fix | Delete
global $wpdb;
[25] Fix | Delete
$this->table_name = $wpdb->prefix . 'psp';
[26] Fix | Delete
$this->meta_key = '';
[27] Fix | Delete
}
[28] Fix | Delete
[29] Fix | Delete
/**
[30] Fix | Delete
* Returns the query to return an identifier for the posts to import.
[31] Fix | Delete
*
[32] Fix | Delete
* @return string
[33] Fix | Delete
*/
[34] Fix | Delete
protected function retrieve_posts_query() {
[35] Fix | Delete
return "SELECT URL AS identifier FROM {$this->table_name} WHERE blog_id = %d";
[36] Fix | Delete
}
[37] Fix | Delete
}
[38] Fix | Delete
[39] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function