You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
16 lines
355 B
<?php
|
|
|
|
if (!defined('WP_UNINSTALL_PLUGIN')) {
|
|
exit;
|
|
}
|
|
|
|
$options = get_option('oss_options', true);
|
|
$upload_url_path = get_option('upload_url_path');
|
|
$oss_upload_url_path = esc_attr($options['upload_url_path']);
|
|
|
|
if ($upload_url_path == $oss_upload_url_path) {
|
|
update_option('upload_url_path', '');
|
|
}
|
|
|
|
delete_option('oss_options');
|