diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-03-28 23:46:44 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-03-28 23:47:44 +0200 |
commit | 1b6fe4f65efb1d1f696f35b70454ad30cae6310b (patch) | |
tree | 03abff26ef05581372af60408cb7b3e763ef47aa /3rdparty/Archive | |
parent | c26e00346210492ed9dd60c7a910b5187310d47b (diff) | |
download | nextcloud-server-1b6fe4f65efb1d1f696f35b70454ad30cae6310b.tar.gz nextcloud-server-1b6fe4f65efb1d1f696f35b70454ad30cae6310b.zip |
stricter tests for archive backends and make sure we make the tests
Diffstat (limited to '3rdparty/Archive')
-rw-r--r-- | 3rdparty/Archive/Tar.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/Archive/Tar.php b/3rdparty/Archive/Tar.php index d69bab6ad78..d8eae851bdc 100644 --- a/3rdparty/Archive/Tar.php +++ b/3rdparty/Archive/Tar.php @@ -649,14 +649,14 @@ class Archive_Tar extends PEAR // {{{ _error() function _error($p_message) { - $this->error_object = &$this->raiseError($p_message); + $this->error_object = $this->raiseError($p_message); } // }}} // {{{ _warning() function _warning($p_message) { - $this->error_object = &$this->raiseError($p_message); + $this->error_object = $this->raiseError($p_message); } // }}} |