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