call recreate xml after save settings
This commit is contained in:
parent
85fe86a501
commit
9a5824795f
|
@ -82,6 +82,15 @@ class pluginRSS extends Plugin {
|
|||
$this->createXML();
|
||||
}
|
||||
|
||||
public function post()
|
||||
{
|
||||
// Call the method
|
||||
parent::post();
|
||||
|
||||
// After POST request
|
||||
$this->createXML();
|
||||
}
|
||||
|
||||
public function afterPageCreate()
|
||||
{
|
||||
$this->createXML();
|
||||
|
|
|
@ -59,6 +59,15 @@ class pluginSitemap extends Plugin {
|
|||
$this->createXML();
|
||||
}
|
||||
|
||||
public function post()
|
||||
{
|
||||
// Call the method
|
||||
parent::post();
|
||||
|
||||
// After POST request
|
||||
$this->createXML();
|
||||
}
|
||||
|
||||
public function afterPageCreate()
|
||||
{
|
||||
$this->createXML();
|
||||
|
|
Loading…
Reference in New Issue