File "Installer.php"
Full Path: /home/elegucvf/public_html/video/wp-content/wp-includes/wp-content/plugins/backup_1740598049/includes/Installer.php
File size: 360 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Simple301Redirects;
class Installer {
public function migrate()
{
$this->set_version_number();
}
public function set_version_number()
{
if (get_option('simple301redirects_version') != SIMPLE301REDIRECTS_VERSION) {
update_option('simple301redirects_version', SIMPLE301REDIRECTS_VERSION);
}
}
}