User offline. Last seen 32 weeks 4 days ago. Offline
Joined: 08/13/2010

Googlebot user agent string may look like this:
Googlebot/2.1 (+http://www.googlebot.com/bot.html)
This test returns number 0 and thus will cause the following test in common.php to fail:
if (strpos($ua, $substring) != FALSE)
 
Replace the test with
if (strpos($ua, $substring) !== FALSE)
 
(note the extra '=' sign)

Trackback URL for this post:

http://www.opencalais.com/trackback/100171

Login or Register to post a comment.