PluginProbe
Elementor Website Builder – more than just a page builder / 3.7.5
Elementor Website Builder – more than just a page builder v3.7.5
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/managers/image.php +3 -0 3.7.43.7.5 View file →
@@ -75,8 +75,11 @@
75 75 foreach ( $sizes as $size ) {
76 76 if ( 0 === strpos( $size, 'custom_' ) ) {
77 77 preg_match( '/custom_(\d*)x(\d*)/', $size, $matches );
78 78
79 + $matches[1] = (int) $matches[1];
80 + $matches[2] = (int) $matches[2];
81 +
79 82 $instance = [
80 83 'image_size' => 'custom',
81 84 'image_custom_dimension' => [
82 85 'width' => $matches[1],