Hi,

I just checked my error logs today and found masses of errors which seem to be fired with every page request:

[error] PHP Warning: in_array() expects at least 2 parameters, 1 given in /sites/all/modules/mobile_tools/modules/mt_browscap/mt_browscap.module on line 32 

As I do not really need mobile tools at the moment I deactivated this module.

Best,
Tobias

Comments

tobiberlin’s picture

Maybe the code

  if (isset($user_agent['browser']) && in_array($user_agent['browser'])) {
    $device_information['group'] = array_search($user_agent['browser'], $groups);
  }

is meant to be

  if (isset($user_agent['browser']) && in_array($user_agent['browser'], $groups)) {
    $device_information['group'] = array_search($user_agent['browser'], $groups);
  }

???

Best,
Tobias

djbobbydrake’s picture

@tobiberlin - Seeing the same error - your fix looks like it fixes the issue.

devin carlson’s picture

Status: Active » Closed (duplicate)