Ticket #37412: 37412.patch
| File 37412.patch, 5.5 KB (added by , 10 years ago) |
|---|
-
src/wp-admin/includes/class-automatic-upgrader-skin.php
23 23 24 24 /** 25 25 * 26 * @param bool $error 27 * @param string $context 28 * @param bool $allow_relaxed_file_ownership 29 * @return bool 26 * 27 * @uses request_filesystem_credentials() 28 * 29 * @param bool $error Optional. Whether the current request has failed to connect. 30 * Default false. 31 * @param string $context Optional. Full path to the directory that is tested 32 * for being writable. Default empty. 33 * @param bool $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable. 34 * Default false. 35 * @return bool False on failure, true on success. 30 36 */ 31 37 public function request_filesystem_credentials( $error = false, $context = '', $allow_relaxed_file_ownership = false ) { 32 38 if ( $context ) { -
src/wp-admin/includes/class-wp-upgrader-skin.php
60 60 61 61 /** 62 62 * 63 * @param bool $error 64 * @param string $context 65 * @param bool $allow_relaxed_file_ownership 66 * @return type 63 * 64 * @uses request_filesystem_credentials() 65 * 66 * @param bool $error Optional. Whether the current request has failed to connect. 67 * Default false. 68 * @param string $context Optional. Full path to the directory that is tested 69 * for being writable. Default empty. 70 * @param bool $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable. 71 * Default false. 72 * @return bool False on failure, true on success. 67 73 */ 68 public function request_filesystem_credentials( $error = false, $context = false, $allow_relaxed_file_ownership = false ) {74 public function request_filesystem_credentials( $error = false, $context = '', $allow_relaxed_file_ownership = false ) { 69 75 $url = $this->options['url']; 70 76 if ( ! $context ) { 71 77 $context = $this->options['context']; -
src/wp-admin/includes/file.php
957 957 * 958 958 * @param array $args Optional. Connection details. Default empty array. 959 959 * @param string $context Optional. Full path to the directory that is tested 960 * for being writable. Default false.960 * for being writable. Default empty. 961 961 * @param bool $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable. 962 962 * Default false. 963 963 * @return string The transport to use, see description for valid return values. 964 964 */ 965 function get_filesystem_method( $args = array(), $context = false, $allow_relaxed_file_ownership = false ) {965 function get_filesystem_method( $args = array(), $context = '', $allow_relaxed_file_ownership = false ) { 966 966 $method = defined('FS_METHOD') ? FS_METHOD : false; // Please ensure that this is either 'direct', 'ssh2', 'ftpext' or 'ftpsockets' 967 967 968 968 if ( ! $context ) { … … 1027 1027 * Displays a form to the user to request for their FTP/SSH details in order 1028 1028 * to connect to the filesystem. 1029 1029 * 1030 * All chosen/entered details are saved, Excluding the Password.1030 * All chosen/entered details are saved, excluding the password. 1031 1031 * 1032 1032 * Hostnames may be in the form of hostname:portnumber (eg: wordpress.org:2467) 1033 1033 * to specify an alternate FTP/SSH port. … … 1035 1035 * Plugins may override this form by returning true|false via the 1036 1036 * {@see 'request_filesystem_credentials'} filter. 1037 1037 * 1038 * @since 2.5. 1038 * @since 2.5.0 1039 1039 * 1040 1040 * @global string $pagenow 1041 1041 * … … 1044 1044 * @param bool $error Optional. Whether the current request has failed to connect. 1045 1045 * Default false. 1046 1046 * @param string $context Optional. Full path to the directory that is tested 1047 * for being writable. Default false.1047 * for being writable. Default empty. 1048 1048 * @param array $extra_fields Optional. Extra POST fields which should be checked for 1049 1049 * to be included in the post. Default null. 1050 1050 * @param bool $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable. … … 1052 1052 * 1053 1053 * @return bool False on failure, true on success. 1054 1054 */ 1055 function request_filesystem_credentials( $form_post, $type = '', $error = false, $context = false, $extra_fields = null, $allow_relaxed_file_ownership = false ) {1055 function request_filesystem_credentials( $form_post, $type = '', $error = false, $context = '', $extra_fields = null, $allow_relaxed_file_ownership = false ) { 1056 1056 global $pagenow; 1057 1057 1058 1058 /**
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)