Make WordPress Core

Changeset 25880


Ignore:
Timestamp:
10/23/2013 02:37:54 PM (11 years ago)
Author:
ryan
Message:

Pinking shears

Location:
trunk/src
Files:
31 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/admin-footer.php

    r25288 r25880  
    2222     *
    2323     * @since 2.5.0
    24      */ 
    25     do_action( 'in_admin_footer' ); 
     24     */
     25    do_action( 'in_admin_footer' );
    2626    ?>
    2727    <p id="footer-left" class="alignleft">
     
    2929        /**
    3030         * Filter the "Thank you" text displayed in the admin footer.
    31          * 
     31         *
    3232         * @since 2.8.0
    3333         * @param string The content that will be printed.
    34          */ 
     34         */
    3535        echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . __( 'Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.' ) . '</span>' );
    3636        ?>
     
    4343         * @see core_update_footer() WordPress prints the current version and update information,
    4444         *  using core_update_footer() at priority 10.
    45          * 
     45         *
    4646         * @since 2.3.0
    4747         * @param string The content that will be printed.
    4848         */
    49         echo apply_filters( 'update_footer', '' ); 
     49        echo apply_filters( 'update_footer', '' );
    5050        ?>
    5151    </p>
     
    5555/**
    5656 * Print scripts or data before the default footer scripts.
    57  * 
     57 *
    5858 * @since 1.2.0
    5959 * @param string The data to print.
     
    6363/**
    6464 * Prints any scripts and data queued for the footer.
    65  * 
     65 *
    6666 * @since 2.8.0
    6767 */
     
    7070/**
    7171 * Print scripts or data after the default footer scripts.
    72  * 
     72 *
    7373 * @since 2.8.0
    74  * 
     74 *
    7575 * @param string $GLOBALS['hook_suffix'] The current admin page.
    7676 */
  • trunk/src/wp-admin/comment.php

    r25616 r25880  
    280280
    281281    $location = ( empty( $_POST['referredby'] ) ? "edit-comments.php?p=$comment_post_id" : $_POST['referredby'] ) . '#comment-' . $comment_id;
    282    
     282
    283283    /**
    284284     * Filter the URI the user is redirected to after editing a comment in the admin.
  • trunk/src/wp-admin/includes/class-wp-media-list-table.php

    r25140 r25880  
    309309        if ( $parent ) {
    310310            $title = _draft_or_post_title( $post->post_parent );
    311             $parent_type = get_post_type_object( $parent->post_type ); 
     311            $parent_type = get_post_type_object( $parent->post_type );
    312312?>
    313313            <td <?php echo $attributes ?>><strong>
  • trunk/src/wp-admin/includes/class-wp-upgrader-skins.php

    r25859 r25880  
    584584 * Upgrader Skin for Automatic WordPress Upgrades
    585585 *
    586  * This skin is designed to be used when no output is intended, all output 
     586 * This skin is designed to be used when no output is intended, all output
    587587 * is captured and stored for the caller to process and log/email/discard.
    588588 *
  • trunk/src/wp-admin/includes/class-wp-upgrader.php

    r25873 r25880  
    19341934
    19351935        // Don't automatically run these thins, as we'll handle it ourselves
    1936         remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 ); 
    1937         remove_action( 'upgrader_process_complete', 'wp_version_check' ); 
    1938         remove_action( 'upgrader_process_complete', 'wp_update_plugins' ); 
    1939         remove_action( 'upgrader_process_complete', 'wp_update_themes' ); 
     1936        remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
     1937        remove_action( 'upgrader_process_complete', 'wp_version_check' );
     1938        remove_action( 'upgrader_process_complete', 'wp_update_plugins' );
     1939        remove_action( 'upgrader_process_complete', 'wp_update_themes' );
    19401940
    19411941        // Next, Plugins
     
    22712271         *     @type string $body    The email message body.
    22722272         *     @type string $headers Any email headers, defaults to no headers.
    2273          * }   
     2273         * }
    22742274         * @param string $type        The type of email being sent. Can be one of 'success', 'fail', 'manual', 'critical'.
    22752275         * @param object $core_update The update offer that was attempted.
  • trunk/src/wp-admin/includes/deprecated.php

    r25472 r25880  
    11221122 *
    11231123 * {@internal Missing Short Description}}
    1124  * 
    1125  * @since 2.0.0 
     1124 *
     1125 * @since 2.0.0
    11261126 * @deprecated 3.7.0
    11271127 *
  • trunk/src/wp-admin/includes/ms.php

    r25868 r25880  
    6363    $blog = get_blog_details( $blog_id );
    6464    /**
    65      * Fires before a blog is deleted. 
     65     * Fires before a blog is deleted.
    6666     *
    6767     * @since MU
     
    296296                );
    297297        update_option( $current_user->ID . '_new_email', $new_user_email );
    298        
     298
    299299        $email_text = __( 'Dear user,
    300300
     
    316316         *
    317317         * The following strings have a special meaning and will get replaced dynamically:
    318          * ###ADMIN_URL### The link to click on to confirm the email change. Required otherwise this functunalty is will break. 
    319          * ###EMAIL### The new email. 
     318         * ###ADMIN_URL### The link to click on to confirm the email change. Required otherwise this functunalty is will break.
     319         * ###EMAIL### The new email.
    320320         * ###SITENAME### The name of the site.
    321          * ###SITEURL### The URL to the site. 
     321         * ###SITEURL### The URL to the site.
    322322         *
    323323         * @since MU
     
    449449            /**
    450450             * Fires after the user is marked as a SPAM user.
    451              * 
     451             *
    452452             * @since 3.0.0
    453              * 
     453             *
    454454             * @param int $id ID of the user marked as SPAM.
    455455             */
     
    460460             *
    461461             * @since 3.0.0
    462              * 
     462             *
    463463             * @param int $id ID of the user marked as HAM.
    464464             */
     
    495495        'sv' => 'Swedish', 'ty' => 'Tahitian', 'ta' => 'Tamil', 'tt' => 'Tatar', 'te' => 'Telugu', 'tg' => 'Tajik', 'tl' => 'Tagalog', 'th' => 'Thai', 'bo' => 'Tibetan', 'ti' => 'Tigrinya', 'to' => 'Tonga (Tonga Islands)', 'tn' => 'Tswana', 'ts' => 'Tsonga', 'tk' => 'Turkmen', 'tr' => 'Turkish', 'tw' => 'Twi', 'ug' => 'Uighur; Uyghur', 'uk' => 'Ukrainian', 'ur' => 'Urdu', 'uz' => 'Uzbek',
    496496        've' => 'Venda', 'vi' => 'Vietnamese', 'vo' => 'Volapük', 'cy' => 'Welsh','wa' => 'Walloon','wo' => 'Wolof', 'xh' => 'Xhosa', 'yi' => 'Yiddish', 'yo' => 'Yoruba', 'za' => 'Zhuang; Chuang', 'zu' => 'Zulu' );
    497    
     497
    498498    /**
    499499     * Filter the language codes.
    500      * 
     500     *
    501501     * @since MU
    502502     *
     
    700700    if ( isset( $super_admins ) )
    701701        return false;
    702    
     702
    703703    /**
    704704     * Fires before the user is granted Super Admin privileges.
     
    717717        $super_admins[] = $user->user_login;
    718718        update_site_option( 'site_admins' , $super_admins );
    719        
     719
    720720        /**
    721721         * Fires after the user is granted Super Admin privileges.
     
    761761            unset( $super_admins[$key] );
    762762            update_site_option( 'site_admins', $super_admins );
    763            
     763
    764764            /**
    765765             * Fires after the user's Super Admin privileges are revoked.
  • trunk/src/wp-admin/includes/plugin.php

    r25482 r25880  
    543543            /**
    544544             * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false.
    545              * 
     545             *
    546546             * @since 2.9.0
    547547             *
     
    554554            /**
    555555             * Fires before a plugin is activated in activate_plugin() when the $silent parameter is false.
    556              * 
     556             *
    557557             * The action concatenates the 'activate_' prefix with the $plugin value passed to
    558558             * activate_plugin() to create a dynamically-named action.
    559              * 
     559             *
    560560             * @since 2.0.0
    561561             *
     
    578578            /**
    579579             * Fires after a plugin has been activated in activate_plugin() when the $silent parameter is false.
    580              * 
     580             *
    581581             * @since 2.9.0
    582582             *
     
    628628             * Fires for each plugin being deactivated in deactivate_plugins(), before deactivation
    629629             * and when the $silent parameter is false.
    630              * 
     630             *
    631631             * @since 2.9.0
    632632             *
    633633             * @param string $plugin               Plugin path to main plugin file with plugin data.
    634              * @param bool   $network_deactivating Whether the plugin is deactivated for all sites in the network 
     634             * @param bool   $network_deactivating Whether the plugin is deactivated for all sites in the network
    635635             *                                     or just the current site. Multisite only. Default is false.
    636636             */
     
    658658             * Fires for each plugin being deactivated in deactivate_plugins(), after deactivation
    659659             * and when the $silent parameter is false.
    660              * 
     660             *
    661661             * The action concatenates the 'deactivate_' prefix with the plugin's basename
    662662             * to create a dynamically-named action.
    663              * 
     663             *
    664664             * @since 2.0.0
    665665             *
    666              * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network 
     666             * @param bool $network_deactivating Whether the plugin is deactivated for all sites in the network
    667667             *                                   or just the current site. Multisite only. Default is false.
    668668             */
     
    672672             * Fires for each plugin being deactivated in deactivate_plugins(), after deactivation
    673673             * and when the $silent parameter is false.
    674              * 
     674             *
    675675             * @since 2.9.0
    676676             *
    677677             * @param string $plugin               Plugin path to main plugin file with plugin data.
    678              * @param bool   $network_deactivating Whether the plugin is deactivated for all sites in the network 
     678             * @param bool   $network_deactivating Whether the plugin is deactivated for all sites in the network
    679679             *                                     or just the current site. Multisite only. Default is false.
    680680             */
     
    932932        /**
    933933         * Fires in uninstall_plugin() once the plugin has been uninstalled.
    934          * 
     934         *
    935935         * The action concatenates the 'uninstall_' prefix with the basename of the
    936936         * plugin passed to {@see uninstall_plugin()} to create a dynamically-named action.
  • trunk/src/wp-admin/index.php

    r25616 r25880  
    124124        /**
    125125         * Add content to the welcome panel on the admin dashboard.
    126          * 
     126         *
    127127         * To remove the default welcome panel, use remove_action():
    128128         * <code>remove_action( 'welcome_panel', 'wp_welcome_panel' );</code>
    129          * 
     129         *
    130130         * @since 3.5.0
    131131         */
    132         do_action( 'welcome_panel' ); 
     132        do_action( 'welcome_panel' );
    133133        ?>
    134134    </div>
  • trunk/src/wp-admin/js/about.js

    r25848 r25880  
    4141        setTimeout(animate, 220 + Math.floor(Math.random() * ( 800 - 220)) );
    4242    }
    43     // 
     43    //
    4444    function begin(){
    45         // we async load zxcvbn, so we need to make sure it's loaded before starting 
     45        // we async load zxcvbn, so we need to make sure it's loaded before starting
    4646        if (typeof(zxcvbn) !== 'undefined')
    4747            animate();
     
    4949            setTimeout(begin,800);
    5050    }
    51    
     51
    5252    // Turn off the animation on focus
    5353    $input.on('focus', function(){
     
    5656    });
    5757
    58     // Act like a normal password strength meter 
     58    // Act like a normal password strength meter
    5959    $input.on('keyup', function(){
    6060        updateResult();
  • trunk/src/wp-admin/network.php

    r25722 r25880  
    6868        /**
    6969         * Filter whether to enable the subdirectory install feature in Multisite.
    70          * 
     70         *
    7171         * @since 3.0.0
    72          * 
     72         *
    7373         * @param bool true Whether to enable the subdirectory install feature in Multisite. Default is false.
    7474         */
  • trunk/src/wp-admin/options-general.php

    r25830 r25880  
    266266    /**
    267267    * Filter the default time formats.
    268     * 
     268    *
    269269    * @since 2.7.0
    270270    *
  • trunk/src/wp-admin/options-reading.php

    r25717 r25880  
    151151    <label for="blog-norobots"><?php _e( 'Discourage search engines from indexing this site' ); ?></label>
    152152    <p class="description"><?php _e( 'Note: Neither of these options blocks access to your site &mdash; it is up to search engines to honor your request.' ); ?></p>
    153     <?php 
     153    <?php
    154154    /**
    155155     * Enable the legacy 'Site Visibility' privacy options.
  • trunk/src/wp-admin/options.php

    r25616 r25880  
    3131else
    3232
    33     /** 
    34      * Filter the capability required when using the Settings API. 
    35      * 
    36      * By default, the options groups for all registered settings require the manage_options capability. 
    37      * This filter is required to change the capability required for a certain options page. 
    38      * 
     33    /**
     34     * Filter the capability required when using the Settings API.
     35     *
     36     * By default, the options groups for all registered settings require the manage_options capability.
     37     * This filter is required to change the capability required for a certain options page.
     38     *
    3939     * @since 3.2.0
    40      * 
    41      * @param string $capability The capability used for the page, which is manage_options by default. 
     40     *
     41     * @param string $capability The capability used for the page, which is manage_options by default.
    4242     */
    4343    $capability = apply_filters( "option_page_capability_{$option_page}", $capability );
     
    107107    $whitelist_options['general'][] = 'new_admin_email';
    108108    $whitelist_options['general'][] = 'WPLANG';
    109    
     109
    110110    /**
    111111     * Toggle post-by-email functionality.
     
    120120
    121121/**
    122  * Filter the options white list. 
    123  * 
     122 * Filter the options white list.
     123 *
    124124 * @since 2.7.0
    125125 *
  • trunk/src/wp-admin/revision.php

    r25616 r25880  
    22/**
    33 * Revisions administration panel
    4  * 
     4 *
    55 * Requires wp-admin/includes/revision.php.
    66 *
     
    88 * @subpackage Administration
    99 * @since 2.6.0
    10  * 
     10 *
    1111 * @param int    revision Optional. The revision ID.
    1212 * @param string action   The action to take.
    13  *                        Accepts 'restore', 'view' or 'edit'. 
     13 *                        Accepts 'restore', 'view' or 'edit'.
    1414 * @param int    from     The revision to compare from.
    1515 * @param int    to       Optional, required if revision missing. The revision to compare to.
  • trunk/src/wp-admin/update-core.php

    r25841 r25880  
    2525    global $wp_local_package, $wpdb, $wp_version;
    2626    static $first_pass = true;
    27  
     27
    2828    if ( 'en_US' == $update->locale && 'en_US' == get_locale() )
    2929        $version_string = $update->current;
     
    3333    else
    3434        $version_string = sprintf( "%s&ndash;<strong>%s</strong>", $update->current, $update->locale );
    35  
     35
    3636    $current = false;
    3737    if ( !isset($update->response) || 'latest' == $update->response )
  • trunk/src/wp-admin/user-new.php

    r25868 r25880  
    117117            $add_user_errors = $user_details[ 'errors' ];
    118118        } else {
    119             /** 
     119            /**
    120120             * Filter the user_login, aka the username, before it is added to the site.
    121              * 
     121             *
    122122             * @since 3.0.0
    123              * 
    124              * @param string $_REQUEST['user_login'] The sanitized username. 
    125              */ 
     123             *
     124             * @param string $_REQUEST['user_login'] The sanitized username.
     125             */
    126126            $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) );
    127127            if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
     
    189189wp_enqueue_script('user-profile');
    190190
    191 /** 
     191/**
    192192 * Allows you to enable user auto-complete for non-super admins in multisite.
    193  * 
     193 *
    194194 * @since 3.4.0
    195  * 
     195 *
    196196 * @param bool True or false, based on if you enable auto-complete for non-super admins. Default is false.
    197  */ 
     197 */
    198198if ( is_multisite() && current_user_can( 'promote_users' ) && ! wp_is_large_network( 'users' )
    199199    && ( is_super_admin() || apply_filters( 'autocomplete_users_for_site_admins', false ) )
     
    282282?>
    283283<?php
    284 /** 
     284/**
    285285 * Fires inside the adduser form tag.
    286  * 
     286 *
    287287 * @since 3.0.0
    288  */ 
     288 */
    289289?>
    290290<form action="" method="post" name="adduser" id="adduser" class="validate"<?php do_action('user_new_form_tag');?>>
     
    377377        <td><input name="url" type="text" id="url" class="code" value="<?php echo esc_attr($new_user_uri); ?>" /></td>
    378378    </tr>
    379 <?php 
    380 /** 
     379<?php
     380/**
    381381 * Filter the display of the password fields.
    382  * 
     382 *
    383383 * @since 1.5.1
    384  * 
     384 *
    385385 * @param bool True or false, based on if you want to show the password fields. Default is true.
    386  */ 
     386 */
    387387if ( apply_filters( 'show_password_fields', true ) ) : ?>
    388388    <tr class="form-field form-required">
  • trunk/src/wp-admin/widgets.php

    r25734 r25880  
    321321<?php } ?>
    322322
    323 <?php 
     323<?php
    324324/**
    325325 * Fires before the Widgets administration page content loads.
  • trunk/src/wp-includes/category.php

    r25724 r25880  
    272272        return $return;
    273273    }
    274    
     274
    275275    /**
    276276     * Filter the array of term objects returned for the 'post_tag' taxonomy.
  • trunk/src/wp-includes/class-http.php

    r25654 r25880  
    637637        }
    638638
    639         return wp_remote_request( $redirect_location, $args ); 
     639        return wp_remote_request( $redirect_location, $args );
    640640    }
    641641
     
    945945    /**
    946946     * Verifies the received SSL certificate against it's Common Names and subjectAltName fields
    947      * 
     947     *
    948948     * PHP's SSL verifications only verify that it's a valid Certificate, it doesn't verify if
    949949     * the certificate is valid for the hostname which was requested.
  • trunk/src/wp-includes/class-wp-admin-bar.php

    r25563 r25880  
    5151             * add_theme_support( 'admin-bar', array( 'callback' => '__return_false' ) );
    5252             */
    53             $admin_bar_args = get_theme_support( 'admin-bar' ); 
     53            $admin_bar_args = get_theme_support( 'admin-bar' );
    5454            $header_callback = $admin_bar_args[0]['callback'];
    5555        }
  • trunk/src/wp-includes/class-wp-walker.php

    r25644 r25880  
    88 *
    99 * @since 2.1.0
    10  * 
     10 *
    1111 * @package WordPress
    1212 * @abstract
  • trunk/src/wp-includes/feed-rdf.php

    r25868 r25880  
    1717    xmlns:admin="http://webns.net/mvcb/"
    1818    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    19     <?php 
     19    <?php
    2020    /**
    2121     * Fires at the end of the feed root to add namespaces.
     
    2323     * @since 2.0.0
    2424     */
    25     do_action( 'rdf_ns' ); 
     25    do_action( 'rdf_ns' );
    2626    ?>
    2727>
     
    3636    <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
    3737    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    38     <?php 
     38    <?php
    3939    /**
    4040     * Fires at the end of the RDF feed header.
     
    4242     * @since 2.0.0
    4343     */
    44     do_action( 'rdf_header' ); 
     44    do_action( 'rdf_header' );
    4545    ?>
    4646    <items>
     
    6565    <content:encoded><![CDATA[<?php the_content_feed('rdf') ?>]]></content:encoded>
    6666<?php endif; ?>
    67     <?php 
     67    <?php
    6868    /**
    6969     * Fires at the end of each RDF feed item.
     
    7171     * @since 2.0.0
    7272     */
    73     do_action( 'rdf_item' ); 
     73    do_action( 'rdf_item' );
    7474    ?>
    7575</item>
  • trunk/src/wp-includes/feed-rss.php

    r25529 r25880  
    2424     *
    2525     * @since 2.0.0
    26      */ 
     26     */
    2727    do_action( 'rss_head' );
    2828    ?>
  • trunk/src/wp-includes/feed-rss2-comments.php

    r25868 r25880  
    1515    xmlns:atom="http://www.w3.org/2005/Atom"
    1616    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    17     <?php 
     17    <?php
    1818    /** This action is documented in wp-includes/feed-rss2.php */
    1919    do_action( 'rss2_ns' );
    2020    ?>
    2121
    22     <?php 
     22    <?php
    2323    /**
    2424     * Fires at the end of the RSS root to add namespaces.
     
    4646    <?php /** This filter is documented in wp-includes/feed-rss2.php */ ?>
    4747    <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
    48     <?php 
     48    <?php
    4949    /**
    5050     * Fires at the end of the RSS2 comment feed header.
  • trunk/src/wp-includes/ms-load.php

    r25732 r25880  
    7676    /**
    7777     * Filter checking the status of the current blog.
    78      * 
     78     *
    7979     * @since 1.2.1
    80      * 
     80     *
    8181     * @param bool null Whether to skip the blog status check. Default null.
    8282    */
  • trunk/src/wp-includes/shortcodes.php

    r25423 r25880  
    342342     * Filter a shortcode's default attributes.
    343343     *
    344      * If the third parameter of the shortcode_atts() function is present then this filter is available. 
     344     * If the third parameter of the shortcode_atts() function is present then this filter is available.
    345345     * The third parameter, $shortcode, is the name of the shortcode.
    346346     *
  • trunk/src/wp-includes/update.php

    r25873 r25880  
    1818 * @uses $wp_version Used to check against the newest WordPress version.
    1919 *
    20  * @param array $extra_stats Extra statistics to report to the WordPress.org API. 
     20 * @param array $extra_stats Extra statistics to report to the WordPress.org API.
    2121 * @return mixed Returns null if update is unsupported. Returns false if check is too soon.
    2222 */
  • trunk/src/wp-includes/vars.php

    r25767 r25880  
    9696
    9797/**
    98  * Whether the server software is Nginx or something else 
    99  * @global bool $is_nginx 
    100  */ 
    101 $is_nginx = (strpos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false); 
    102  
     98 * Whether the server software is Nginx or something else
     99 * @global bool $is_nginx
     100 */
     101$is_nginx = (strpos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false);
     102
    103103/**
    104104 * Whether the server software is IIS or something else
  • trunk/src/wp-login.php

    r25868 r25880  
    425425/**
    426426 * Fires when the login form is initialized.
    427  * 
     427 *
    428428 * @since 3.2.0
    429429 */
     
    435435 * that brought the visitor to the login form. Actions include 'postpass',
    436436 * 'logout', 'lostpassword', etc.
    437  * 
     437 *
    438438 * @since 2.8.0
    439439 */
     
    575575    /**
    576576     * Fires before the password reset procedure is validated.
    577      * 
     577     *
    578578     * @since 3.5.0
    579579     *
  • trunk/src/xmlrpc.php

    r25281 r25880  
    4343      <api name="MetaWeblog" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" />
    4444      <api name="Blogger" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" />
    45       <?php 
    46       /** 
     45      <?php
     46      /**
    4747       * Add additional APIs to the Really Simple Discovery (RSD) endpoint.
    4848       *
    4949       * @see http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
    5050       * @since 3.5.0
    51        */ 
    52       do_action( 'xmlrpc_rsd_apis' ); 
     51       */
     52      do_action( 'xmlrpc_rsd_apis' );
    5353      ?>
    5454    </apis>
     
    7070$post_default_title = "";
    7171
    72 /** 
     72/**
    7373 * Filter the class used for handling XML-RPC requests.
    74  * 
     74 *
    7575 * @since 3.1.0
    7676 * @param string The name of the XML-RPC server class.
    77  */ 
     77 */
    7878$wp_xmlrpc_server_class = apply_filters( 'wp_xmlrpc_server_class', 'wp_xmlrpc_server' );
    7979$wp_xmlrpc_server = new $wp_xmlrpc_server_class;
Note: See TracChangeset for help on using the changeset viewer.