Skip to content

Commit 39ea834

Browse files
committed
Fixing indents.
1 parent 91b3212 commit 39ea834

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/Rackem/Protection/JsonCsrf.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ public function call($env)
88
{
99
list($status,$headers,$body) = $this->app->call($env);
1010
$req = new \Rackem\Request($env);
11-
if ($this->has_vector($req, $headers)) {
11+
if ($this->has_vector($req, $headers)) {
1212
$result = $this->react($env);
1313
$this->warn($env, "attack prevented by ".get_class($this));
1414
}
15-
return isset($result)? $result : array($status,$headers,$body);
16-
}
15+
return isset($result)? $result : array($status,$headers,$body);
16+
}
1717

1818
public function has_vector($req, $headers)
1919
{
2020
if ($req->is_xhr()) return false;
2121

22-
$content_type = isset($headers['Content-Type'])? explode(';',$headers['Content-Type'],2) : array('');
23-
if(!preg_match('/^\s*application\/json\s*$/',array_shift($content_type))) return false;
22+
$content_type = isset($headers['Content-Type'])? explode(';',$headers['Content-Type'],2) : array('');
23+
if(!preg_match('/^\s*application\/json\s*$/',array_shift($content_type))) return false;
2424

2525
return $this->referrer($req->env) != $req->host();
2626
}

0 commit comments

Comments
 (0)