call recreate xml after save settings

This commit is contained in:
floppy0 2018-02-28 11:08:35 +01:00
parent 85fe86a501
commit 9a5824795f
2 changed files with 18 additions and 0 deletions

View File

@ -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();

View File

@ -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();