Index: src/wp-admin/includes/class-automatic-upgrader-skin.php
===================================================================
--- src/wp-admin/includes/class-automatic-upgrader-skin.php	(revision 38093)
+++ src/wp-admin/includes/class-automatic-upgrader-skin.php	(working copy)
@@ -23,10 +23,16 @@
 
 	/**
 	 *
-	 * @param bool   $error
-	 * @param string $context
-	 * @param bool   $allow_relaxed_file_ownership
-	 * @return bool
+	 *
+	 * @uses request_filesystem_credentials()
+	 *
+	 * @param bool   $error                        Optional. Whether the current request has failed to connect.
+	 *                                             Default false.
+	 * @param string $context                      Optional. Full path to the directory that is tested
+	 *                                             for being writable. Default empty.
+	 * @param bool   $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable.
+	 *                                             Default false.
+	 * @return bool False on failure, true on success.
 	 */
 	public function request_filesystem_credentials( $error = false, $context = '', $allow_relaxed_file_ownership = false ) {
 		if ( $context ) {
Index: src/wp-admin/includes/class-wp-upgrader-skin.php
===================================================================
--- src/wp-admin/includes/class-wp-upgrader-skin.php	(revision 38093)
+++ src/wp-admin/includes/class-wp-upgrader-skin.php	(working copy)
@@ -60,12 +60,18 @@
 
 	/**
 	 *
-	 * @param bool   $error
-	 * @param string $context
-	 * @param bool   $allow_relaxed_file_ownership
-	 * @return type
+	 *
+	 * @uses request_filesystem_credentials()
+	 *
+	 * @param bool   $error                        Optional. Whether the current request has failed to connect.
+	 *                                             Default false.
+	 * @param string $context                      Optional. Full path to the directory that is tested
+	 *                                             for being writable. Default empty.
+	 * @param bool   $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable.
+	 *                                             Default false.
+	 * @return bool False on failure, true on success.
 	 */
-	public function request_filesystem_credentials( $error = false, $context = false, $allow_relaxed_file_ownership = false ) {
+	public function request_filesystem_credentials( $error = false, $context = '', $allow_relaxed_file_ownership = false ) {
 		$url = $this->options['url'];
 		if ( ! $context ) {
 			$context = $this->options['context'];
Index: src/wp-admin/includes/file.php
===================================================================
--- src/wp-admin/includes/file.php	(revision 38093)
+++ src/wp-admin/includes/file.php	(working copy)
@@ -957,12 +957,12 @@
  *
  * @param array  $args                         Optional. Connection details. Default empty array.
  * @param string $context                      Optional. Full path to the directory that is tested
- *                                             for being writable. Default false.
+ *                                             for being writable. Default empty.
  * @param bool   $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable.
  *                                             Default false.
  * @return string The transport to use, see description for valid return values.
  */
-function get_filesystem_method( $args = array(), $context = false, $allow_relaxed_file_ownership = false ) {
+function get_filesystem_method( $args = array(), $context = '', $allow_relaxed_file_ownership = false ) {
 	$method = defined('FS_METHOD') ? FS_METHOD : false; // Please ensure that this is either 'direct', 'ssh2', 'ftpext' or 'ftpsockets'
 
 	if ( ! $context ) {
@@ -1027,7 +1027,7 @@
  * Displays a form to the user to request for their FTP/SSH details in order
  * to connect to the filesystem.
  *
- * All chosen/entered details are saved, Excluding the Password.
+ * All chosen/entered details are saved, excluding the password.
  *
  * Hostnames may be in the form of hostname:portnumber (eg: wordpress.org:2467)
  * to specify an alternate FTP/SSH port.
@@ -1035,7 +1035,7 @@
  * Plugins may override this form by returning true|false via the
  * {@see 'request_filesystem_credentials'} filter.
  *
- * @since 2.5.
+ * @since 2.5.0
  *
  * @global string $pagenow
  *
@@ -1044,7 +1044,7 @@
  * @param bool   $error                        Optional. Whether the current request has failed to connect.
  *                                             Default false.
  * @param string $context                      Optional. Full path to the directory that is tested
- *                                             for being writable. Default false.
+ *                                             for being writable. Default empty.
  * @param array  $extra_fields                 Optional. Extra POST fields which should be checked for
  *                                             to be included in the post. Default null.
  * @param bool   $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable.
@@ -1052,7 +1052,7 @@
  *
  * @return bool False on failure, true on success.
  */
-function request_filesystem_credentials( $form_post, $type = '', $error = false, $context = false, $extra_fields = null, $allow_relaxed_file_ownership = false ) {
+function request_filesystem_credentials( $form_post, $type = '', $error = false, $context = '', $extra_fields = null, $allow_relaxed_file_ownership = false ) {
 	global $pagenow;
 
 	/**
