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();
|
$this->createXML();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function post()
|
||||||
|
{
|
||||||
|
// Call the method
|
||||||
|
parent::post();
|
||||||
|
|
||||||
|
// After POST request
|
||||||
|
$this->createXML();
|
||||||
|
}
|
||||||
|
|
||||||
public function afterPageCreate()
|
public function afterPageCreate()
|
||||||
{
|
{
|
||||||
$this->createXML();
|
$this->createXML();
|
||||||
|
|
|
@ -59,6 +59,15 @@ class pluginSitemap extends Plugin {
|
||||||
$this->createXML();
|
$this->createXML();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function post()
|
||||||
|
{
|
||||||
|
// Call the method
|
||||||
|
parent::post();
|
||||||
|
|
||||||
|
// After POST request
|
||||||
|
$this->createXML();
|
||||||
|
}
|
||||||
|
|
||||||
public function afterPageCreate()
|
public function afterPageCreate()
|
||||||
{
|
{
|
||||||
$this->createXML();
|
$this->createXML();
|
||||||
|
|
Loading…
Reference in New Issue