Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 1
 
 
Reply with quote Download Post 
Post 058-005 - FIXED - Bots Color 
 
Hi there,

found some minor things with bots color.

Code: [Download] [Hide] [Select]
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
                if ($tmp_list[0] == "65" && $tmp_list[1] == "214" && $tmp_list[2] == "44")
                {
                    //Ask Jeeves
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span>Ask Jeeves</span>' : '<span>Ask Jeeves</span>';
                }
                if ($tmp_list[0] == "209" && $tmp_list[1] == "237" && $tmp_list[2] == "238")
                {
                    //Alexa
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span>Alexa</span>' : '<span>Alexa</span>';
                }
                if ($tmp_list[0] == "212" && $tmp_list[1] == "48" && $tmp_list[2] == "8")
                {
                    //Virgilio
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span>Virgilio</span>' : '<span>Virgilio</span>';
                }
                if ($tmp_list[0] == "66" && $tmp_list[1] == "94" && $tmp_list[2] == "229")
                {
                    //Inktomi
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span>InktomiBot</span>' : '<span>InktomiBot</span>';
                }
                if ($tmp_list[0] == "66" && $tmp_list[1] == "228" && $tmp_list[2] == "165")
                {
                    //Inktomi
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span>InktomiBot</span>' : '<span>InktomiBot</span>';
                }
                // Show Search Bot - END
#
#-----[ REPLACE WITH ]------------------------------------------
#
                if ($tmp_list[0] == "65" && $tmp_list[1] == "214" && $tmp_list[2] == "44")
                {
                    //Ask Jeeves
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span style="font-weight:bold;color:' . $bots_color . '">Ask Jeeves</span>' : '<span style="font-weight:bold;color:' . $bots_color . '">Ask Jeeves</span>';
                }
                if ($tmp_list[0] == "209" && $tmp_list[1] == "237" && $tmp_list[2] == "238")
                {
                    //Alexa
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span style="font-weight:bold;color:' . $bots_color . '">Alexa</span>' : '<span style="font-weight:bold;color:' . $bots_color . '">Alexa</span>';
                }
                if ($tmp_list[0] == "212" && $tmp_list[1] == "48" && $tmp_list[2] == "8")
                {
                    //Virgilio
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span style="font-weight:bold;color:' . $bots_color . '">Virgilio</span>' : '<span style="font-weight:bold;color:' . $bots_color . '">Virgilio</span>';
                }
                if ($tmp_list[0] == "66" && $tmp_list[1] == "94" && $tmp_list[2] == "229")
                {
                    //Inktomi
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span style="font-weight:bold;color:' . $bots_color . '">InktomiBot</span>' : '<span style="font-weight:bold;color:' . $bots_color . '">InktomiBot</span>';
                }
                if ($tmp_list[0] == "66" && $tmp_list[1] == "228" && $tmp_list[2] == "165")
                {
                    //Inktomi
                    $online_botlist .= ( $online_botlist != '' ) ? ', ' . '<span style="font-weight:bold;color:' . $bots_color . '">InktomiBot</span>' : '<span style="font-weight:bold;color:' . $bots_color . '">InktomiBot</span>';
                }
                // Show Search Bot - END

#
#-----[ OPEN ]------------------------------------------
#
viewonline.php
#
#-----[ FIND ]------------------------------------------
#
            if ($tmp_list[0] == "65" && $tmp_list[1] == "214" && $tmp_list[2] == "44")
            {
                //AskJeeves
                $username = '<span>AskJeeves</span>';
            }
            if ($tmp_list[0] == "209" && $tmp_list[1] == "237" && $tmp_list[2] == "238")
            {
                //Alexa
                $username = '<span>Alexa</span>';
            }
            if ($tmp_list[0] == "212" && $tmp_list[1] == "48" && $tmp_list[2] == "8")
            {
                //Virgilio
                $username = '<span>Virgilio</span>';
            }
            if ($tmp_list[0] == "66" && $tmp_list[1] == "94" && $tmp_list[2] == "229")
            {
                //Inktomi
                $username = '<span>InktomiBot</span>';
            }
            if ($tmp_list[0] == "66" && $tmp_list[1] == "228" && $tmp_list[2] == "165")
            {
                //Inktomi
                $username = '<span>InktomiBot</span>';
            }
            // Show Search Bot - END
#
#-----[ REPLACE WITH ]------------------------------------------
#
            if ($tmp_list[0] == "65" && $tmp_list[1] == "214" && $tmp_list[2] == "44")
            {
                //AskJeeves
                $username = '<span style="font-weight:bold;color:' . $bots_color . '">AskJeeves</span>';
            }
            if ($tmp_list[0] == "209" && $tmp_list[1] == "237" && $tmp_list[2] == "238")
            {
                //Alexa
                $username = '<span style="font-weight:bold;color:' . $bots_color . '">Alexa</span>';
            }
            if ($tmp_list[0] == "212" && $tmp_list[1] == "48" && $tmp_list[2] == "8")
            {
                //Virgilio
                $username = '<span style="font-weight:bold;color:' . $bots_color . '">Virgilio</span>';
            }
            if ($tmp_list[0] == "66" && $tmp_list[1] == "94" && $tmp_list[2] == "229")
            {
                //Inktomi
                $username = '<span style="font-weight:bold;color:' . $bots_color . '">InktomiBot</span>';
            }
            if ($tmp_list[0] == "66" && $tmp_list[1] == "228" && $tmp_list[2] == "165")
            {
                //Inktomi
                $username = '<span style="font-weight:bold;color:' . $bots_color . '">InktomiBot</span>';
            }
            // Show Search Bot - END


I must post this here because i have no access to patches area, maybe MG give me access?

cya
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: 058-005 - FIXED - Bots Color 
 
I've included this modifications in the CRITICAL patch here:

http://www.phpBBXS.eu/viewtopic.php?t=183

So if you apply that patch, you don't need to apply also this one.

Thanks KugeL!
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 058-005 - FIXED - Bots Color 
 
Are you sure you did?
I updated that file with winmerge but I didn't seen this code...  
 




____________
Megabass
 
ganeshSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Respuesta: 058-005 - FIXED - Bots Color 
 
Kugel.
In the ACP the Ask Jeeves Bot it does not appear in the asigned color.
 
Greets.
 




____________
www.JanuWeb.Com - Webmaster
www.phpBB-Es.Com - Administrador
 
JANU1535Send private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 058-005 - FIXED - Bots Color 
 
thx Janu,
i´ll check this later
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Respuesta: 058-005 - FIXED - Bots Color 
 
No problem Kugel.

 




____________
www.JanuWeb.Com - Webmaster
www.phpBB-Es.Com - Administrador
 
JANU1535Send private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 058-005 - FIXED - Bots Color 
 
ganesh wrote: [View Post]
Are you sure you did?
I updated that file with winmerge but I didn't seen this code...  

I have these fixed in my package... anyway a big patch will be out soon... then everything will be fixed!
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 058-005 - FIXED - Bots Color 
 
yay big patch
 




____________
check out my site sometime
www.Dutch-HQ.net
 
NizzleSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron