Don't access HTTP_USER_AGENT if it doesn't exist
This commit is contained in:
parent
d6cc13ac33
commit
9a2e3a52c9
|
@ -72,7 +72,7 @@ class MobileProfilePlugin extends WAP20Plugin
|
||||||
} else if (isset($_COOKIE['MobileOverride'])) {
|
} else if (isset($_COOKIE['MobileOverride'])) {
|
||||||
// Cookie override is controlled by link at bottom.
|
// Cookie override is controlled by link at bottom.
|
||||||
$this->serveMobile = (bool)$_COOKIE['MobileOverride'];
|
$this->serveMobile = (bool)$_COOKIE['MobileOverride'];
|
||||||
} else {
|
} elseif (array_key_exists('HTTP_USER_AGENT', $_SERVER)) {
|
||||||
// If they like the WAP 2.0 mimetype, serve them MP
|
// If they like the WAP 2.0 mimetype, serve them MP
|
||||||
// @fixme $type is undefined, making this if case useless and spewing errors.
|
// @fixme $type is undefined, making this if case useless and spewing errors.
|
||||||
// What's the intent?
|
// What's the intent?
|
||||||
|
|
Loading…
Reference in New Issue
Block a user