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
|
|
6 | 6 | * |
7 | 7 | * {@link http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/ - Installation Notes} |
8 | 8 | * |
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) |
10 | 10 | * |
11 | 11 | * cd /usr/src |
12 | 12 | * wget https://www.libssh2.org/download/libssh2-0.14.tar.gz |
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 { |
163 | 163 | * with this table. |
164 | 164 | * |
165 | 165 | * 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. |
167 | 167 | * |
168 | 168 | * @since 3.1.0 |
169 | 169 | * |
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() { |
1152 | 1152 | /** |
1153 | 1153 | * This was once used to kick-off the Core Updater. |
1154 | 1154 | * |
1155 | | * Deprecated in favor of instantating a Core_Upgrader instance directly, |
| 1155 | * Deprecated in favor of instantiating a Core_Upgrader instance directly, |
1156 | 1156 | * and calling the 'upgrade' method. |
1157 | 1157 | * |
1158 | 1158 | * @since 2.7.0 |
… |
… |
function wp_update_core($current, $feedback = '') { |
1174 | 1174 | /** |
1175 | 1175 | * This was once used to kick-off the Plugin Updater. |
1176 | 1176 | * |
1177 | | * Deprecated in favor of instantating a Plugin_Upgrader instance directly, |
| 1177 | * Deprecated in favor of instantiating a Plugin_Upgrader instance directly, |
1178 | 1178 | * and calling the 'upgrade' method. |
1179 | 1179 | * Unused since 2.8.0. |
1180 | 1180 | * |
diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php
index bc150c8a53..83938306b0 100644
a
|
b
|
function convert_smilies( $text ) { |
3506 | 3506 | $textarr = preg_split( '/(<.*>)/U', $text, -1, PREG_SPLIT_DELIM_CAPTURE ); // Capture the tags as well as in between. |
3507 | 3507 | $stop = count( $textarr ); // Loop stuff. |
3508 | 3508 | |
3509 | | // Ignore proessing of specific tags. |
| 3509 | // Ignore processing of specific tags. |
3510 | 3510 | $tags_to_ignore = 'code|pre|style|script|textarea'; |
3511 | 3511 | $ignore_block_element = ''; |
3512 | 3512 | |
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() ) { |
4133 | 4133 | ! call_user_func( array( $implementation, 'supports_mime_type' ), $args['output_mime_type'] ) |
4134 | 4134 | ) { |
4135 | 4135 | /* |
4136 | | * This implementation supports the imput type but not the output type. |
| 4136 | * This implementation supports the input type but not the output type. |
4137 | 4137 | * Keep looking to see if we can find an implementation that supports both. |
4138 | 4138 | */ |
4139 | 4139 | $supports_input = $implementation; |