Forums
(@ruelluna)
11 years, 3 months ago
This error occurs when the target to a new window is selected. The return value $item['social-target'] is an array, thus printing it would cause array to string conversion.
$item['social-target']
Quick fix is to get the first element of the array $item['social-target'][0]
$item['social-target'][0]