Ticket #7395: 7395.01.patch
| File 7395.01.patch, 908 bytes (added by , 9 years ago) |
|---|
-
src/bp-core/classes/class-bp-embed.php
205 205 206 206 // Grab cache and return it if available. 207 207 if ( !empty( $cache ) ) { 208 /** This filter is documented in /wp-includes/class-wp-embed.php */ 209 $cache = apply_filters( 'embed_oembed_html', $cache, $url, $attr, 0 ); 208 210 209 211 /** 210 212 * Filters the found cache for the provided URL. … … 238 240 239 241 // If there was a result, return it. 240 242 if ( $html ) { 243 /** This filter is documented in /wp-includes/class-wp-embed.php */ 244 $html = apply_filters( 'embed_oembed_html', $html, $url, $attr, 0 ); 241 245 242 246 /** This filter is documented in bp-core/classes/class-bp-embed.php */ 243 247 return apply_filters( 'bp_embed_oembed_html', $html, $url, $attr, $rawattr );