Beispiel #1
0
 /**
  * Check a unique behavior for the current browser.
  *
  * Many client browsers do some really funky things, and this
  * mechanism allows the coder to determine if an excepetion must
  * be made with the current client.
  *
  * @param string $in_quirk The quirk to detect
  *
  * @access public
  * @return bool whether or not browser has this quirk
  */
 function hasQuirk($in_quirk)
 {
     return (bool) Net_UserAgent_Detect::getQuirk($in_quirk);
 }