diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-13 21:06:29 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-13 21:06:29 +0000 |
commit | 1aac08acc0df55fb5c323d91ae9c1f3d8c29535d (patch) | |
tree | fd54bd12b4deb05526fe49559cc0e6c07b497ac5 /phpBB/includes/functions_compress.php | |
parent | b0b796381741cef142d5f76c2571e081c90a1ed3 (diff) | |
download | forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar.gz forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar.bz2 forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar.xz forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.zip |
make sure custom profile fields are created correctly on registration (#2225)
git-svn-id: file:///svn/phpbb/trunk@6058 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_compress.php')
-rw-r--r-- | phpBB/includes/functions_compress.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/functions_compress.php b/phpBB/includes/functions_compress.php index 3be750e9bc..1dc95bc509 100644 --- a/phpBB/includes/functions_compress.php +++ b/phpBB/includes/functions_compress.php @@ -9,8 +9,8 @@ */ /** -* @package phpBB3 * Class for handling archives (compression/decompression) +* @package phpBB3 */ class compress { @@ -121,8 +121,6 @@ class compress } /** -* @package phpBB3 -* * Zip creation class from phpMyAdmin 2.3.0 (c) Tobias Ratschiller, Olivier Müller, Loïc Chapeaux, * Marc Delisle, http://www.phpmyadmin.net/ * @@ -132,6 +130,8 @@ class compress * * Based on work by Eric Mueller and Denis125 * Official ZIP file format: http://www.pkware.com/appnote.txt +* +* @package phpBB3 */ class compress_zip extends compress { @@ -440,10 +440,10 @@ class compress_zip extends compress } /** -* @package phpBB3 -* * Tar/tar.gz compression routine * Header/checksum creation derived from tarfile.pl, (c) Tom Horsley, 1994 +* +* @package phpBB3 */ class compress_tar extends compress { |