after upgrading to PHP 5.6 I am getting different "illegal string offset" warnings:
Warning: Illegal string offset 'id' in header.php on line 4
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
}
Anybody any idea how to fix this issue?
Thank you in advance!!