IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | // Attachment stuff |
| 228 | | if ( 'attachment' == $post_data['post_type'] && isset( $post_data['_wp_attachment_image_alt'] ) ) { |
| 229 | | $image_alt = get_post_meta( $post_ID, '_wp_attachment_image_alt', true ); |
| 230 | | if ( $image_alt != stripslashes( $post_data['_wp_attachment_image_alt'] ) ) { |
| 231 | | $image_alt = wp_strip_all_tags( stripslashes( $post_data['_wp_attachment_image_alt'] ), true ); |
| 232 | | // update_meta expects slashed |
| 233 | | update_post_meta( $post_ID, '_wp_attachment_image_alt', addslashes( $image_alt ) ); |
| | 228 | if ( 'attachment' == $post_data['post_type'] ) { |
| | 229 | if ( isset( $post_data[ '_wp_attachment_image_alt' ] ) ) { |
| | 230 | $image_alt = get_post_meta( $post_ID, '_wp_attachment_image_alt', true ); |
| | 231 | if ( $image_alt != stripslashes( $post_data['_wp_attachment_image_alt'] ) ) { |
| | 232 | $image_alt = wp_strip_all_tags( stripslashes( $post_data['_wp_attachment_image_alt'] ), true ); |
| | 233 | // update_meta expects slashed |
| | 234 | update_post_meta( $post_ID, '_wp_attachment_image_alt', addslashes( $image_alt ) ); |
| | 235 | } |
| 234 | 236 | } |
| 235 | 237 | |
| 236 | 238 | if ( isset( $post_data['attachments'][ $post_ID ] ) ) |