From ac704e838c98379a00100890617bfb6919a4e352 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 21 Jan 2016 20:26:06 +0000 Subject: [PATCH] Media: In `_wp_handle_upload()`, move ending brace to a new line. Props georgestephanis. Fixes #35565. git-svn-id: https://develop.svn.wordpress.org/trunk@36373 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/file.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/includes/file.php b/src/wp-admin/includes/file.php index ec4c23a7d6..20af7419e0 100644 --- a/src/wp-admin/includes/file.php +++ b/src/wp-admin/includes/file.php @@ -409,7 +409,8 @@ function _wp_handle_upload( &$file, $overrides, $time, $action ) { 'file' => $new_file, 'url' => $url, 'type' => $type - ), 'wp_handle_sideload' === $action ? 'sideload' : 'upload' ); } + ), 'wp_handle_sideload' === $action ? 'sideload' : 'upload' ); +} /** * Wrapper for _wp_handle_upload(), passes 'wp_handle_upload' action.