modules/videopress-v2/class.videopress-video.php 1 location
|
@@ 219-220 (lines=2) @@
|
| 216 |
|
if ( isset( $data->duration ) && $data->duration > 0 ) |
| 217 |
|
$this->duration = absint( $data->duration ); |
| 218 |
|
|
| 219 |
|
if ( isset( $data->width ) && $data->width > 0 ) |
| 220 |
|
$this->calculated_width = absint( $data->width ); |
| 221 |
|
|
| 222 |
|
if ( isset( $data->height ) && $data->height > 0 ) |
| 223 |
|
$this->calculated_height = absint( $data->height ); |
modules/videopress/class.videopress-video.php 1 location
|
@@ 208-209 (lines=2) @@
|
| 205 |
|
if ( isset( $data->duration ) && $data->duration > 0 ) |
| 206 |
|
$this->duration = absint( $data->duration ); |
| 207 |
|
|
| 208 |
|
if ( isset( $data->width ) && $data->width > 0 ) |
| 209 |
|
$this->calculated_width = absint( $data->width ); |
| 210 |
|
|
| 211 |
|
if ( isset( $data->height ) && $data->height > 0 ) |
| 212 |
|
$this->calculated_height = absint( $data->height ); |