When checking plugin upgrade infos, in plugins list, you display a pretty red message.
When analyzing how you do that with the
function plugin_check_version($file, $plugin_data)
we discover that code send to your server (info.dev4press.com/update/) the home url (get_option('home')) of the site which use gd-star-rating plugin
$url = gdFunctionsGDSR::get_update_url($this->o, get_option('home'));
$update = wp_remote_fopen($url);
if ($update != "") {
echo '<td colspan="'.$columns.'" class="gdr-plugin-update"><div class="gdr-plugin-update-message">';
echo $update;
echo '</div></td>';
}
Do you think it is really useful ? Are you using that for more precise statistics ? What do you do with these website infos ?
Congratulations for your plugin.