The admin page of AudioField shows the following error on open:
url: ?q=admin/config/media/audiofield
Fatal error: Unsupported operand types in [...drupal]/includes/theme.inc on line 817
This line is part of the theme function in Drupal7 theme.inc:
function theme($hook, $variables = array()) {
...
// Merge in argument defaults.
if (!empty($info['variables'])) {
$variables += $info['variables'];
}
...
}
Comments
Comment #1
jide commentedThis is because the theme implementation of flowplayer is not correct.
In audiofield.module, line 326 :
Should be :
Comment #2
LagPRO-dupe commentedJide, thanks, this fixed the problem. +1
Comment #3
swapna.m commentedthank you..
Comment #4
Taxoman commentedSubscribing - will this be committed, or in need of more testing or confirmations?
Comment #5
Taxoman commentedThere is a patch over here:
#1246798: Fatal error: Unsupported operand types in /includes/theme.inc on line 830
Comment #6
2xe commentedThe patch referenced in #5 works like charm for me.