diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-11-03 09:36:29 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-11-03 09:36:29 +0100 |
commit | d922c55256c59ee6ee332a4db8740a01e559dcee (patch) | |
tree | cb5785984e021ef1c073f8eb73b599f897f5286c /inc | |
parent | 90d1012da11114447d60d54903c51bc1568c40b6 (diff) | |
download | rpg-d922c55256c59ee6ee332a4db8740a01e559dcee.tar.gz rpg-d922c55256c59ee6ee332a4db8740a01e559dcee.tar.bz2 |
fix use of constructor in TarLib
Diffstat (limited to 'inc')
-rw-r--r-- | inc/TarLib.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/TarLib.class.php b/inc/TarLib.class.php index 126604cd1..ce27409fd 100644 --- a/inc/TarLib.class.php +++ b/inc/TarLib.class.php @@ -164,7 +164,7 @@ class TarLib { */ function setArchive($p_name='', $p_comp = TarLib::COMPRESS_AUTO, $p_level=9) { $this->_CompTar(); - $this->TarLib($p_name, $p_comp, $p_level); + $this->__construct($p_name, $p_comp, $p_level); return $this->_result; } |