Skip to content

Commit

Permalink
[WebProfilerBundle] Don't filter submitted IP values
Browse files Browse the repository at this point in the history
  • Loading branch information
javiereguiluz committed May 4, 2019
1 parent 15e9eec commit 29bd2ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public function searchAction(Request $request)

$this->profiler->disable();

$ip = preg_replace('/[^:\d\.]/', '', $request->query->get('ip'));
$ip = $request->query->get('ip');
$method = $request->query->get('method');
$statusCode = $request->query->get('status_code');
$url = $request->query->get('url');
Expand Down

0 comments on commit 29bd2ad

Please sign in to comment.