View Single Post
04-25-2012, 05:20 PM   #6
Jeff
Administrator
 
Jeff's Avatar
 
Join Date: Jul 2010
Posts: 402
Rep Power: 10
Jeff is getting browny points
Not sure why you would have this issue, but you might want to change this line:

PHP Code:
if ($res['body']) 
To:

PHP Code:
if (is_array($res) and $res['body']) 
Jeff is offline   Reply With Quote