From a66445acc06bf336cf8a50e275bb36de99f08ef9 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 8 Jan 2013 16:08:51 -0800 Subject: [PATCH] Set timeout for AssembleUploadChunks.php. * This change was placed in the wrong commit instead. Change-Id: I2de6bf1e3a3101b4fa733b8cc0911ac77b38e921 --- includes/upload/AssembleUploadChunks.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/upload/AssembleUploadChunks.php b/includes/upload/AssembleUploadChunks.php index d933d34d47..54ef840055 100644 --- a/includes/upload/AssembleUploadChunks.php +++ b/includes/upload/AssembleUploadChunks.php @@ -21,6 +21,7 @@ * @ingroup Maintenance */ require_once( __DIR__ . '/../../maintenance/Maintenance.php' ); +set_time_limit( 3600 ); // 1 hour /** * Assemble the segments of a chunked upload. -- 2.20.1