Changeset 11961 for trunk/wp-includes/functions.php
- Timestamp:
- 09/23/2009 06:51:19 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r11945 r11961 2408 2408 } 2409 2409 2410 return apply_filters( 'explain_nonce_' . $verb . '-' . $noun, __( 'Are you sure you want to do this?' ), $matches[4]);2410 return apply_filters( 'explain_nonce_' . $verb . '-' . $noun, __( 'Are you sure you want to do this?' ), isset($matches[4]) ? $matches[4] : '' ); 2411 2411 } else { 2412 2412 return apply_filters( 'explain_nonce_' . $action, __( 'Are you sure you want to do this?' ) );
Note: See TracChangeset
for help on using the changeset viewer.