You appear to be a bot. Output may be restricted
Description
Determine if the browser is the MSNBot or not (last updated 1.9)
Usage
$boolean = Browser::checkBrowserMSNBot();
Parameters
Returns
boolean True if the browser is the MSNBot otherwise false
Source
File name: easy-digital-downloads/includes/libraries/browser.php
Lines:
1 to 12 of 12
function checkBrowserMSNBot() { if ( stripos( $this->_agent, "msnbot" ) !== false ) { $aresult = explode( "/", stristr( $this->_agent, "msnbot" ) ); $aversion = explode( " ", $aresult[1] ); $this->setVersion( str_replace( ";", "", $aversion[0] ) ); $this->_browser_name = $this->BROWSER_MSNBOT; $this->setRobot( true ); return true; } return false; }