Changeset 39600 for trunk/src/wp-includes/bookmark.php
- Timestamp:
- 12/14/2016 04:17:38 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/bookmark.php
r39188 r39600 384 384 if ( 'edit' == $context ) { 385 385 /** This filter is documented in wp-includes/post.php */ 386 $value = apply_filters( "edit_ $field", $value, $bookmark_id );386 $value = apply_filters( "edit_{$field}", $value, $bookmark_id ); 387 387 388 388 if ( 'link_notes' == $field ) { … … 393 393 } elseif ( 'db' == $context ) { 394 394 /** This filter is documented in wp-includes/post.php */ 395 $value = apply_filters( "pre_ $field", $value );395 $value = apply_filters( "pre_{$field}", $value ); 396 396 } else { 397 397 /** This filter is documented in wp-includes/post.php */ 398 $value = apply_filters( $field, $value, $bookmark_id, $context );398 $value = apply_filters( "{$field}", $value, $bookmark_id, $context ); 399 399 400 400 if ( 'attribute' == $context ) {
Note: See TracChangeset
for help on using the changeset viewer.