Renderer: do not preserve action-related params

This commit is contained in:
Thomas Gelf 2016-12-23 11:14:00 +01:00
parent d5721b2a99
commit 1fc6634b75

View file

@ -196,7 +196,7 @@ abstract class Renderer extends Html
*/
public function setUrl(Url $url)
{
$this->url = clone($url);
$this->url = $url->without(array('simulationnode', 'deletenode'));
$this->setBaseUrl($url);
return $this;
}