PluginProbe
Property Hive / 2.4.0
Property Hive v2.4.0
2.4.0 2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 All 262 releases
← All changes | includes/divi-widgets/property-embedded-virtual-tours.php +2 -1 2.2.2 → 2.4.0 View file →
@@ -45,8 +45,9 @@
45 45 {
46 46 if ( isset($settings['oembed']) && $settings['oembed'] == 'yes' )
47 47 {
48 48 $embed_code = wp_oembed_get($virtual_tour['url']);
49 + // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- wp_oembed_get() uses WordPress provider trust and sanitization; preserve supported provider scripts and trusted PHP filters.
49 50 echo $embed_code;
50 51 }
51 52 else
52 53 {
@@ -76,5 +77,5 @@
76 77 }
77 78
78 79 return $this->_render_module_wrapper( ob_get_clean(), $render_slug );
79 80 }
80 -}
81 +}