aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Log
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2021-06-23 11:20:19 +0200
committerGitHub <noreply@github.com>2021-06-23 11:20:19 +0200
commitee7a4842844f19fb14f332ef85252d6adc968283 (patch)
treea7f91df996235bb022a3b18da9f12ed64fab698e /lib/private/Log
parentc6d5653a85df1d007baca42ae67643fff937c2ab (diff)
parent5f468c0248b6a36bcbf20953a4223168617c6926 (diff)
downloadnextcloud-server-ee7a4842844f19fb14f332ef85252d6adc968283.tar.gz
nextcloud-server-ee7a4842844f19fb14f332ef85252d6adc968283.zip
Merge pull request #26346 from J0WI/clean-auth-regex
Cleaner removePassword regex
Diffstat (limited to 'lib/private/Log')
-rw-r--r--lib/private/Log/ErrorHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Log/ErrorHandler.php b/lib/private/Log/ErrorHandler.php
index 1d2376befbf..6c969fa093c 100644
--- a/lib/private/Log/ErrorHandler.php
+++ b/lib/private/Log/ErrorHandler.php
@@ -39,7 +39,7 @@ class ErrorHandler {
* @return string
*/
protected static function removePassword($msg) {
- return preg_replace('/\/\/(.*):(.*)@/', '//xxx:xxx@', $msg);
+ return preg_replace('#//(.*):(.*)@#', '//xxx:xxx@', $msg);
}
public static function register($debug = false) {