log_wp_error($error, true);
} elseif (is_string($error)) {
$updraftplus->log($error);
$updraftplus->log($error, 'warning-restore');
}
}
protected function updraft_feedback($string) {
if (isset($this->upgrader->strings[$string])) {
$string = $this->upgrader->strings[$string];
}
if (false !== strpos($string, '%')) {
$args = func_get_args();
$args = array_splice($args, 1);
if ($args) {
$args = array_map('strip_tags', $args);
$args = array_map('esc_html', $args);
$string = vsprintf($string, $args);
}
}
if (empty($string)) return;
global $updraftplus;
$updraftplus->log_e($string);
}
}
global $updraftplus;
$wp_version = $updraftplus->get_wordpress_version();
if (version_compare($wp_version, '5.3', '>=')) {
if (!class_exists('Updraft_Restorer_Skin')) updraft_try_include_file('includes/updraft-restorer-skin-compatibility.php', 'require_once');
} else {
class Updraft_Restorer_Skin extends Updraft_Restorer_Skin_Main {
public function feedback($string) {
parent::updraft_feedback($string);
}
}
}