Download & Extend

Array Key Exists : The Second Argument Should Be An Array An Object

Project:Global Avatar
Version:6.x-1.0
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:needs review

Issue Summary

Hi,

I had warning:

Array Key Exists : The Second Argument Should Be An Array An Object

on this line

if (array_key_exists('cid', get_object_vars($account))) {
if (variable_get('user_picture_imagecache_comments', 0)) {
$size = variable_get('user_picture_imagecache_comments', 0);
}
}

I fixed it this way:

if(is_array($account) || is_object($account)){
if (array_key_exists('cid', get_object_vars($account))) {
if (variable_get('user_picture_imagecache_comments', 0)) {
$size = variable_get('user_picture_imagecache_comments', 0);
}
}
}

nobody click here