Changes in trunk/wp-includes/class-oembed.php [16444:14976]
- File:
-
- 1 edited
-
trunk/wp-includes/class-oembed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-oembed.php
r16444 r14976 243 243 244 244 $title = ( !empty($data->title) ) ? $data->title : ''; 245 $return = '< a href="' . esc_url( $url ) . '"><img src="' . esc_url( $data->url ) . '" alt="' . esc_attr($title) . '" width="' . esc_attr($data->width) . '" height="' . esc_attr($data->height) . '" /></a>';245 $return = '<img src="' . esc_url( $data->url ) . '" alt="' . esc_attr($title) . '" width="' . esc_attr($data->width) . '" height="' . esc_attr($data->height) . '" />'; 246 246 break; 247 247
Note: See TracChangeset
for help on using the changeset viewer.