From 6b292f78041e2ef8baba23225e43e39493bf96f0 Mon Sep 17 00:00:00 2001 From: Ian Baker Date: Mon, 15 Aug 2011 18:17:51 +0000 Subject: [PATCH] cleaned up database query, doesn't have to be aware of column names anymore (thanks Catrope!) followup to r92009 --- includes/upload/UploadStash.php | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/includes/upload/UploadStash.php b/includes/upload/UploadStash.php index af02fb21f9..1156f47524 100644 --- a/includes/upload/UploadStash.php +++ b/includes/upload/UploadStash.php @@ -485,22 +485,7 @@ class UploadStash { return false; } - $this->fileMetadata[$key] = array( - 'us_user' => $row->us_user, - 'us_key' => $row->us_key, - 'us_orig_path' => $row->us_orig_path, - 'us_path' => $row->us_path, - 'us_size' => $row->us_size, - 'us_sha1' => $row->us_sha1, - 'us_mime' => $row->us_mime, - 'us_media_type' => $row->us_media_type, - 'us_image_width' => $row->us_image_width, - 'us_image_height' => $row->us_image_height, - 'us_image_bits' => $row->us_image_bits, - 'us_source_type' => $row->us_source_type, - 'us_timestamp' => $row->us_timestamp, - 'us_status' => $row->us_status - ); + $this->fileMetadata[$key] = (array)$row; return true; } -- 2.20.1