Make WordPress Core

Ticket #60069: 60069.diff

File 60069.diff, 3.3 KB (added by jayadevankbh, 12 months ago)

Patch added

  • src/wp-admin/includes/class-wp-filesystem-ssh2.php

    diff --git a/src/wp-admin/includes/class-wp-filesystem-ssh2.php b/src/wp-admin/includes/class-wp-filesystem-ssh2.php
    index 6979a92c2f..b8daad1ab1 100644
    a b  
    66 *
    77 * {@link http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/ - Installation Notes}
    88 *
    9  * Compile libssh2 (Note: Only 0.14 is officaly working with PHP 5.2.6+ right now, But many users have found the latest versions work)
     9 * Compile libssh2 (Note: Only 0.14 is officially working with PHP 5.2.6+ right now, But many users have found the latest versions work)
    1010 *
    1111 * cd /usr/src
    1212 * wget https://www.libssh2.org/download/libssh2-0.14.tar.gz
  • src/wp-admin/includes/class-wp-users-list-table.php

    diff --git a/src/wp-admin/includes/class-wp-users-list-table.php b/src/wp-admin/includes/class-wp-users-list-table.php
    index ecb8eb4b6d..8dfe3ce1a3 100644
    a b class WP_Users_List_Table extends WP_List_Table { 
    163163         * with this table.
    164164         *
    165165         * Provides a list of roles and user count for that role for easy
    166          * Filtersing of the user table.
     166         * filtering of the user table.
    167167         *
    168168         * @since 3.1.0
    169169         *
  • src/wp-admin/includes/deprecated.php

    diff --git a/src/wp-admin/includes/deprecated.php b/src/wp-admin/includes/deprecated.php
    index d588ad4f54..f7805b4cc7 100644
    a b function wp_nav_menu_locations_meta_box() { 
    11521152/**
    11531153 * This was once used to kick-off the Core Updater.
    11541154 *
    1155  * Deprecated in favor of instantating a Core_Upgrader instance directly,
     1155 * Deprecated in favor of instantiating a Core_Upgrader instance directly,
    11561156 * and calling the 'upgrade' method.
    11571157 *
    11581158 * @since 2.7.0
    function wp_update_core($current, $feedback = '') { 
    11741174/**
    11751175 * This was once used to kick-off the Plugin Updater.
    11761176 *
    1177  * Deprecated in favor of instantating a Plugin_Upgrader instance directly,
     1177 * Deprecated in favor of instantiating a Plugin_Upgrader instance directly,
    11781178 * and calling the 'upgrade' method.
    11791179 * Unused since 2.8.0.
    11801180 *
  • src/wp-includes/formatting.php

    diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php
    index bc150c8a53..83938306b0 100644
    a b function convert_smilies( $text ) { 
    35063506                $textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Capture the tags as well as in between.
    35073507                $stop    = count( $textarr ); // Loop stuff.
    35083508
    3509                 // Ignore proessing of specific tags.
     3509                // Ignore processing of specific tags.
    35103510                $tags_to_ignore       = 'code|pre|style|script|textarea';
    35113511                $ignore_block_element = '';
    35123512
  • src/wp-includes/media.php

    diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php
    index 224d8a18ca..9cf301e95c 100644
    a b function _wp_image_editor_choose( $args = array() ) { 
    41334133                        ! call_user_func( array( $implementation, 'supports_mime_type' ), $args['output_mime_type'] )
    41344134                ) {
    41354135                        /*
    4136                          * This implementation supports the imput type but not the output type.
     4136                         * This implementation supports the input type but not the output type.
    41374137                         * Keep looking to see if we can find an implementation that supports both.
    41384138                         */
    41394139                        $supports_input = $implementation;