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