From c2c7c271e74e2531b80e857865b598a738179135 Mon Sep 17 00:00:00 2001 From: rxu Date: Wed, 24 May 2023 20:49:01 +0700 Subject: [PATCH] [ticket/17139] Fix PHP fatal error for file transfer tool of updater PHPBB3-17139 --- phpBB/includes/functions_transfer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_transfer.php b/phpBB/includes/functions_transfer.php index f0070b4b1e..4621725be1 100644 --- a/phpBB/includes/functions_transfer.php +++ b/phpBB/includes/functions_transfer.php @@ -281,7 +281,7 @@ class ftp extends transfer } // Init some needed values - $this->transfer(); + parent::__construct(); return; }