PMC-138 Assigned user lost in case of Custom Import (Promotion Manager)
This commit is contained in:
7
thirdparty/pear/Log/file.php
vendored
7
thirdparty/pear/Log/file.php
vendored
@@ -319,7 +319,12 @@ class Log_file extends Log
|
||||
$request .= ($request!='' ? "\t" : '') . $k . '='.$v;
|
||||
}
|
||||
}
|
||||
foreach( $_GET as $k => $v ) $request .= ($request!='' ? "\t" : '') . $k . '='.$v;
|
||||
foreach ($_GET as $k => $v) {
|
||||
if (is_array($v)) {
|
||||
$v = json_encode($v);
|
||||
}
|
||||
$request .= ($request != '' ? "\t" : '') . $k . '=' . $v;
|
||||
}
|
||||
|
||||
//exact time with microseconds
|
||||
$t = explode(' ',microtime(false));
|
||||
|
||||
Reference in New Issue
Block a user