in WordPress changed this code:
$highlight=$author_data->wp_capabilities['administrator']==1 ? "wall-admin" : "wall-registered";
to this:
if(isset(wp_capabilities['administrator']))
{$highlight=$author_data->wp_capabilities['administrator']==1 ? "wall-admin" : "wall-registered";}
But result is this:
Parse error: syntax error, unexpected '[', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in /wp-content/themes/oblivion/chat/wp-wall.php on line 196
Can anyone help me with this?