Skip to content

Commit

Permalink
Updated GET fields in test console
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaj committed Feb 11, 2016
1 parent 5308490 commit 8f1be3d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Component/console.latte
Expand Up @@ -28,7 +28,11 @@
{/if}
{if $response->getGetFields()}
<b>GET:</b>
<pre>{!implode("\n", $response->getGetFields())}</pre>
<pre>{foreach $response->getGetFields() as $key => $field}
{block |strip}
{$key}={$field}
{/block}
{/foreach}</pre>
{/if}
{if $response->getCookieFields()}
<b>COOKIES:</b>
Expand Down

0 comments on commit 8f1be3d

Please sign in to comment.