更新媒体和文件实体模块后,bb动画模块无法正常工作

时间:2017-09-29 10:00:00

标签: php drupal

更新媒体和文件实体模块后,bb动画模块无法正常工作。它没有显示背景视差图像。有人可以帮我这个吗?

Block edit image

1 个答案:

答案 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;
    	}

相关问题