2014-11-07, 01:29 PM
I'm not causing problems, im speaking about the plugin you claim to be your own. I check plugins i install and i notice things and it started with the dirty refresh you passed at the top of your file.
It's not your code, that's why your overly defensive, if your not doing anything wrong then why are you so defensive and stating people are causing problems?
I guess these are real problems:
Dirty Refresh:
Yours:
His
Yours
His
Yours
His
Yet, his came out in 2009 at least you can do is man up to stealing it. I'm not even the author of the original version either, however what you did is indeed very arrogant.
It's not your code, that's why your overly defensive, if your not doing anything wrong then why are you so defensive and stating people are causing problems?
I guess these are real problems:
Dirty Refresh:
if(!defined("IN_MYBB"))
{
die("<meta http-equiv=\"refresh\" content=\"0;URL=http://notionbb.com\">");
}
Yours:
foreach($addSpider as $spider)
{
if(!in_array($spider['useragent'], $knownspiders))
{
$spiders_group = array(
'name' => addslashes($spider['name']),
'useragent' => addslashes($spider['useragent']),
);
$db->insert_query("spiders", $spiders_group);
}
His
foreach($addSpider as $spider)
{
// If doesn't already exist in the table, then add it
if(!in_array($spider['useragent'], $knownspiders))
{
// Now add each spider
$spiders_group = array(
'name' => addslashes($spider['name']),
'useragent' => addslashes($spider['useragent']),
);
$db->insert_query("spiders", $spiders_group);
}
}
Yours
unset($addSpider, $spider, $knownspiders);
His
unset($addSpider, $spider, $knownspiders);
Yours
foreach($addSpider as $spider)
{
$spiders_group = array(
'name' => addslashes($spider['name']),
);
$db->write_query("DELETE FROM ".TABLE_PREFIX."spiders WHERE name='".$spiders_group['name']."'");
}
His
foreach($addSpider as $spider)
{
// Now delete each spider
$spiders_group = array(
'name' => addslashes($spider['name']),
);
$db->write_query("DELETE FROM ".TABLE_PREFIX."spiders WHERE name='".$spiders_group['name']."'");
}
Yet, his came out in 2009 at least you can do is man up to stealing it. I'm not even the author of the original version either, however what you did is indeed very arrogant.