diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-06 11:35:01 -0800 | 
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-06 11:35:01 -0800 | 
| commit | a74fd27e5f238f91f39be14056692945eecedabc (patch) | |
| tree | 6a4a3311536500b06178d5a8c620263b0130d3ea /system/config/user_agents.php | |
| parent | 7778d4c05075e67f096d3d5365e5ae35e1b0a737 (diff) | |
Updated Kohana to r4737
Diffstat (limited to 'system/config/user_agents.php')
| -rw-r--r-- | system/config/user_agents.php | 18 | 
1 files changed, 13 insertions, 5 deletions
| diff --git a/system/config/user_agents.php b/system/config/user_agents.php index c968aebe..2559e85b 100644 --- a/system/config/user_agents.php +++ b/system/config/user_agents.php @@ -1,12 +1,16 @@  <?php defined('SYSPATH') OR die('No direct access allowed.');  /** - * @package  Core - *   * This file contains four arrays of user agent data.  It is used by the   * User Agent library to help identify browser, platform, robot, and   * mobile device data. The array keys are used to identify the device   * and the array values are used to set the actual name of the item. + * + * @package    Kohana + * @author     Kohana Team + * @copyright  (c) 2007-2009 Kohana Team + * @license    http://kohanaphp.com/license   */ +  $config['platform'] = array  (  	'windows nt 6.0' => 'Windows Vista', @@ -49,8 +53,10 @@ $config['platform'] = array  	'unix'           => 'Unknown Unix OS',  ); -// The order of this array should NOT be changed. Many browsers return -// multiple browser types so we want to identify the sub-type first. +/** + * The order of this array should NOT be changed. Many browsers return + * multiple browser types so we want to identify the sub-type first. + */  $config['browser'] = array  (  	'Opera'             => 'Opera', @@ -98,7 +104,9 @@ $config['mobile'] = array  	'android'        => 'Android',  ); -// There are hundreds of bots but these are the most common. +/** + * There are hundreds of bots but these are the most common. + */  $config['robot'] = array  (  	'googlebot'   => 'Googlebot', | 
