Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-filters.php

    r18023 r17999  
    195195add_filter( 'editable_slug',        'urldecode'                           );
    196196add_filter( 'nav_menu_meta_box_object', '_wp_nav_menu_meta_box_object'    );
    197 
    198 // Atom SSL support
    199 add_filter( 'atom_service_url','atom_service_url_filter' );
    200197
    201198// Actions
     
    219216add_action( 'wp_head',             'wp_shortlink_wp_head',          10, 0 );
    220217add_action( 'template_redirect',   'wp_shortlink_header',           11, 0 );
     218
     219if ( isset( $_GET['replytocom'] ) )
     220    add_filter( 'pre_option_blog_public', '__return_zero' );
    221221
    222222// Login actions
     
    255255add_action( 'comment_form', 'wp_comment_form_unfiltered_html_nonce'        );
    256256add_action( 'wp_scheduled_delete',        'wp_scheduled_delete'            );
     257add_action( 'before_wp_tiny_mce',         'wp_print_editor_js'             );
     258add_action( 'after_wp_tiny_mce',          'wp_preload_dialogs',      10, 1 );
    257259add_action( 'admin_init',                 'send_frame_options_header', 10, 0 );
    258260add_action( 'importer_scheduled_cleanup', 'wp_delete_attachment'           );
Note: See TracChangeset for help on using the changeset viewer.