diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2018-10-27 22:33:44 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2018-10-27 22:33:44 +0200 |
| commit | 7dbfc1e59c6f5a9d1bef0aabf845ce078967b8ae (patch) | |
| tree | 4f46a7efaaffcd36a0655ccc8023211b05c404d2 /phpBB/includes/functions_compress.php | |
| parent | 042f47fc3f2e33bbb9791b0dc66b7ea6ccaa8d94 (diff) | |
| parent | b148bb5d707d739e92b66205866a764a9aa133b5 (diff) | |
| download | forums-7dbfc1e59c6f5a9d1bef0aabf845ce078967b8ae.tar forums-7dbfc1e59c6f5a9d1bef0aabf845ce078967b8ae.tar.gz forums-7dbfc1e59c6f5a9d1bef0aabf845ce078967b8ae.tar.bz2 forums-7dbfc1e59c6f5a9d1bef0aabf845ce078967b8ae.tar.xz forums-7dbfc1e59c6f5a9d1bef0aabf845ce078967b8ae.zip | |
Merge pull request #5424 from rubencm/ticket/15849
[ticket/15849] Stop using php4 constructors
Diffstat (limited to 'phpBB/includes/functions_compress.php')
| -rw-r--r-- | phpBB/includes/functions_compress.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_compress.php b/phpBB/includes/functions_compress.php index 77e03ee449..e86da77b38 100644 --- a/phpBB/includes/functions_compress.php +++ b/phpBB/includes/functions_compress.php @@ -210,7 +210,7 @@ class compress_zip extends compress /** * Constructor */ - function compress_zip($mode, $file) + function __construct($mode, $file) { global $phpbb_filesystem; @@ -569,7 +569,7 @@ class compress_tar extends compress /** * Constructor */ - function compress_tar($mode, $file, $type = '') + function __construct($mode, $file, $type = '') { global $phpbb_filesystem; |
