You appear to be a bot. Output may be restricted
Description
Determine if the browser is Shiretoko or not (https://wiki.mozilla.org/Projects/shiretoko) (last updated 1.7)
Usage
$boolean = Browser::checkBrowserShiretoko();
Parameters
Returns
boolean True if the browser is Shiretoko otherwise false
Source
File name: easy-digital-downloads/includes/libraries/browser.php
Lines:
1 to 9 of 9
function checkBrowserShiretoko() { if ( stripos( $this->_agent, 'Mozilla' ) !== false && preg_match( '/Shiretoko\/([^ ]*)/i', $this->_agent, $matches ) ) { $this->setVersion( $matches[1] ); $this->setBrowser( $this->BROWSER_SHIRETOKO ); return true; } return false; }