Private GIT

Skip to content
Snippets Groups Projects
Unverified Commit a9644e83 authored by Gary Allan's avatar Gary Allan
Browse files

Bugfix: Fix = vs == typo in array_to_log()

parent 5ecd1054
Branches
No related tags found
No related merge requests found
...@@ -842,7 +842,7 @@ class Common_functions { ...@@ -842,7 +842,7 @@ class Common_functions {
foreach($logs as $key=>$req) { foreach($logs as $key=>$req) {
# ignore __ and PHPSESSID # ignore __ and PHPSESSID
if( substr($key,0,2)=='__' || substr($key,0,9)=='PHPSESSID' || substr($key,0,4)=='pass' || $key=='plainpass' || $key='values') if( substr($key,0,2)=='__' || substr($key,0,9)=='PHPSESSID' || substr($key,0,4)=='pass' || $key=='plainpass' || $key=='values')
continue; continue;
// NOTE The colon character ":" is reserved as it used in array_to_log for implode/explode. // NOTE The colon character ":" is reserved as it used in array_to_log for implode/explode.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment