更新媒体和文件实体模块后,bb动画模块无法正常工作。它没有显示背景视差图像。有人可以帮我这个吗?
答案 0 :(得分:0)
我为此模块应用了一个补丁。由于媒体模块更新,这会受到干扰。
bb_animation.module中的第300行更改了代码
这
$file = file_load($background_image['fid']);
要
$background_image_data_type = gettype($background_image);
switch ($background_image_data_type) {
case 'array':
$file = file_load($background_image['fid']);
break;
case 'string':
$file = file_load($background_image);
break;
}