diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-05-18 20:12:53 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-05-18 20:12:53 +0200 |
commit | 60bf39dd81584414d4cb6f8cf568330d1a843a93 (patch) | |
tree | 7757ea89895043d56e570501773f9bad9ff1b342 /inc/TarLib.class.php | |
parent | 2e0c0440007c357cac9fbd8bed1a8b5ac9cab2a6 (diff) | |
parent | 1419a485e3ac0c507ef073f0b816bd41f7e4a5cd (diff) | |
download | rpg-60bf39dd81584414d4cb6f8cf568330d1a843a93.tar.gz rpg-60bf39dd81584414d4cb6f8cf568330d1a843a93.tar.bz2 |
Merge pull request #693 from splitbrain/logdeprecated
log deprecated function calls FS#2399
Diffstat (limited to 'inc/TarLib.class.php')
-rw-r--r-- | inc/TarLib.class.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/inc/TarLib.class.php b/inc/TarLib.class.php index ae08039ec..dd319a79a 100644 --- a/inc/TarLib.class.php +++ b/inc/TarLib.class.php @@ -26,6 +26,8 @@ class TarLib { public $_result = true; function __construct($file, $comptype = TarLib::COMPRESS_AUTO, $complevel = 9) { + dbg_deprecated('class Tar'); + if(!$file) $this->error('__construct', '$file'); $this->file = $file; |