diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-02-04 05:36:17 -0800 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-02-04 05:36:17 -0800 |
commit | e266e50699c43b26b67701f0e33a081ee6978425 (patch) | |
tree | 1806f807fd01fcf17615c0faa275b1a5e43e9b70 /lib | |
parent | 49f0f9f2f67c3494628f14c7a5c383596879ec12 (diff) | |
parent | 36838b2837168b69aba82f88f110c174db25e6d7 (diff) | |
download | nextcloud-server-e266e50699c43b26b67701f0e33a081ee6978425.tar.gz nextcloud-server-e266e50699c43b26b67701f0e33a081ee6978425.zip |
Merge pull request #7065 from owncloud/errorHandler_tests
add test for the password remove method
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/log/errorhandler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/log/errorhandler.php b/lib/private/log/errorhandler.php index f6c96ef8218..1dde6b507fc 100644 --- a/lib/private/log/errorhandler.php +++ b/lib/private/log/errorhandler.php @@ -19,7 +19,7 @@ class ErrorHandler { * @param string $msg * @return string */ - private static function removePassword($msg) { + protected static function removePassword($msg) { return preg_replace('/\/\/(.*):(.*)@/', '//xxx:xxx@', $msg); } |