Error in plugin Plugin add-code-to-head says:

Don't call this file directly. If you wish to uninstall, use the admin tool to do it.

"; wp_die( $message ); } else { $the_option = "acth_options"; /* If running in multisite environment, we'll need to remove the option by brute force */ if( is_multisite() ) { global $wpdb; $blogs = $wpdb->get_results("SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A); if( $blogs ) { foreach( $blogs as $blog ) { switch_to_blog( $blog['blog_id'] ); delete_option( $the_option ); } restore_current_blog(); } } else { delete_option( $the_option ); } } ?>