Exception in Videopack Version 4.8.2
-
Exception:
PHP Fatal error: Uncaught TypeError: Unsupported operand types: string / string in wp-content/plugins/video-embed-thumbnail-generator/video-embed-thumbnail-generator.php:7147
File: wp-content/plugins/video-embed-thumbnail-generator/video-embed-thumbnail-generator.php
Line 7147
$form_fields[“kgflashmediaplayer-aspect”][“value”] = esc_attr( round($set[‘height’] / $set[‘width’], 5) );
MY FIX:
$form_fields[“kgflashmediaplayer-aspect”][“value”] = esc_attr( round(intval($set[‘height’]) / intval($set[‘width’]), 5) );
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Exception in Videopack Version 4.8.2’ is closed to new replies.