function video_update_7209 in Video 7.2
Renames some variables.
Renames variable video_metadata_path to video_ffmpeg_flvtool2_path video_metadata_dimensions to video_dimensions.
File
- ./
video.install, line 695 - Provides installation schema for video.module @author Heshan Wanigasooriya <heshan@heidisoft.com>
Code
function video_update_7209(&$sandbox) {
variable_set('video_ffmpeg_flvtool2_path', variable_get('video_metadata_path'));
variable_set('video_dimensions', variable_get('video_metadata_dimensions'));
variable_del('video_metadata_path');
variable_del('video_metadata_dimensions');
}