Make WordPress Core

Changeset 29580


Ignore:
Timestamp:
08/24/2014 04:04:01 PM (10 years ago)
Author:
ocean90
Message:

Add missing array keys for connection type in request_filesystem_credentials().

see [28456].
fixes #29347.

File:
1 edited

Legend:

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

    r29290 r29580  
    10231023    $private_key = isset( $credentials['private_key'] ) ? $credentials['private_key'] : '';
    10241024    $port = isset( $credentials['port'] ) ? $credentials['port'] : '';
    1025     $connection_type = isset( $credentials[''] ) ? $credentials[''] : '';
     1025    $connection_type = isset( $credentials['connection_type'] ) ? $credentials['connection_type'] : '';
    10261026
    10271027    if ( $error ) {
Note: See TracChangeset for help on using the changeset viewer.