Revision 331, 429 bytes
(checked in by knyghtmare, 14 years ago)
|
Added items remotely
V:\users\knyghtmare\edk\application
V:\users\knyghtmare\edk\media
V:\users\knyghtmare\edk\system
V:\users\knyghtmare\edk\.htaccess
V:\users\knyghtmare\edk\index.php
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | defined('SYSPATH') or die('No direct script access.'); |
---|
4 | |
---|
5 | class Controller extends Controller_Core |
---|
6 | { |
---|
7 | |
---|
8 | public $IGB = false; |
---|
9 | |
---|
10 | public function __construct() |
---|
11 | { |
---|
12 | // don't for get to call the parent constructor! |
---|
13 | parent::__construct(); |
---|
14 | |
---|
15 | if (strpos($_SERVER['HTTP_USER_AGENT'], "EVE-minibrowser") !== false) |
---|
16 | { |
---|
17 | $this->IGB = true; |
---|
18 | } |
---|
19 | } |
---|
20 | |
---|
21 | } |
---|
22 | |
---|
23 | ?> |
---|