Changes from branches/3.1/wp-includes/default-filters.php at r18023 to trunk/wp-includes/default-filters.php at r17999
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-filters.php
r18023 r17999 195 195 add_filter( 'editable_slug', 'urldecode' ); 196 196 add_filter( 'nav_menu_meta_box_object', '_wp_nav_menu_meta_box_object' ); 197 198 // Atom SSL support199 add_filter( 'atom_service_url','atom_service_url_filter' );200 197 201 198 // Actions … … 219 216 add_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 ); 220 217 add_action( 'template_redirect', 'wp_shortlink_header', 11, 0 ); 218 219 if ( isset( $_GET['replytocom'] ) ) 220 add_filter( 'pre_option_blog_public', '__return_zero' ); 221 221 222 222 // Login actions … … 255 255 add_action( 'comment_form', 'wp_comment_form_unfiltered_html_nonce' ); 256 256 add_action( 'wp_scheduled_delete', 'wp_scheduled_delete' ); 257 add_action( 'before_wp_tiny_mce', 'wp_print_editor_js' ); 258 add_action( 'after_wp_tiny_mce', 'wp_preload_dialogs', 10, 1 ); 257 259 add_action( 'admin_init', 'send_frame_options_header', 10, 0 ); 258 260 add_action( 'importer_scheduled_cleanup', 'wp_delete_attachment' );
Note: See TracChangeset
for help on using the changeset viewer.