mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Clearing the session message whenever forAJAXTemplate is used.
This commit is contained in:
parent
94b4237372
commit
a99b430fec
@ -1407,7 +1407,12 @@ class Form extends RequestHandler {
|
|||||||
'Form'
|
'Form'
|
||||||
));
|
));
|
||||||
|
|
||||||
return $view->dontRewriteHashlinks()->process($this);
|
$return = $view->dontRewriteHashlinks()->process($this);
|
||||||
|
|
||||||
|
// Now that we're rendered, clear message
|
||||||
|
$this->clearMessage();
|
||||||
|
|
||||||
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user