You appear to be a bot. Output may be restricted
Description
Determine if the browser is WebTv or not (last updated 1.7)
Usage
$boolean = Browser::checkBrowserWebTv();
Parameters
Returns
boolean True if the browser is WebTv otherwise false
Source
File name: easy-digital-downloads/includes/libraries/browser.php
Lines:
1 to 10 of 10
function checkBrowserWebTv() { if ( stripos( $this->_agent, 'webtv' ) !== false ) { $aresult = explode( '/', stristr( $this->_agent, 'webtv' ) ); $aversion = explode( ' ', $aresult[1] ); $this->setVersion( $aversion[0] ); $this->setBrowser( $this->BROWSER_WEBTV ); return true; } return false; }