[9.0.09] cleaning update datas

This commit is contained in:
fredtempez 2019-03-23 18:41:05 +01:00
parent 0ac987b5a6
commit 0a622dc1cd
1 changed files with 9 additions and 6 deletions

View File

@ -720,8 +720,7 @@ class common {
$this->SaveData(); $this->SaveData();
} }
// Version 8.4.6 // Version 8.4.6
if($this->getData(['core', 'dataVersion']) < 846) { if($this->getData(['core', 'dataVersion']) < 846) {
$this->getData(['core', 'dataVersion']);
$this->setData(['config','itemsperPage',10]); $this->setData(['config','itemsperPage',10]);
$this->setData(['core', 'dataVersion', 846]); $this->setData(['core', 'dataVersion', 846]);
$this->SaveData(); $this->SaveData();
@ -734,7 +733,6 @@ class common {
} }
// Version 8.5.1 // Version 8.5.1
if($this->getData(['core', 'dataVersion']) < 851) { if($this->getData(['core', 'dataVersion']) < 851) {
$this->getData(['core', 'dataVersion']);
$this->setData(['config','itemsperPage',10]); $this->setData(['config','itemsperPage',10]);
$this->deleteData(['config','ItemsperPage']); $this->deleteData(['config','ItemsperPage']);
$this->setData(['core', 'dataVersion', 851]); $this->setData(['core', 'dataVersion', 851]);
@ -742,7 +740,6 @@ class common {
} }
// Version 9.0.0 // Version 9.0.0
if($this->getData(['core', 'dataVersion']) < 9000) { if($this->getData(['core', 'dataVersion']) < 9000) {
$this->setData(['theme', 'site', 'block','12']);
if ($this->getData(['theme','menu','position']) === 'body-top') { if ($this->getData(['theme','menu','position']) === 'body-top') {
$this->setData(['theme','menu','position','top']); $this->setData(['theme','menu','position','top']);
} }
@ -764,7 +761,13 @@ class common {
$this->setData(['theme', 'footer', 'font','Open+Sans']); $this->setData(['theme', 'footer', 'font','Open+Sans']);
$this->setData(['core', 'dataVersion', 9008]); $this->setData(['core', 'dataVersion', 9008]);
$this->SaveData(); $this->SaveData();
} }
// Version 9.0.09
if($this->getData(['core', 'dataVersion']) < 9009) {
$this->deleteData(['theme', 'site', 'block','12']);
$this->setData(['core', 'dataVersion', 9009]);
$this->SaveData();
} }
} }
@ -889,7 +892,7 @@ class core extends common {
if($this->getData(['theme', 'menu', 'margin'])) { if($this->getData(['theme', 'menu', 'margin'])) {
if( if(
$this->getData(['theme', 'menu', 'position']) === 'site-first' $this->getData(['theme', 'menu', 'position']) === 'site-first'
OR $this->getData(['theme', 'header', 'position']) === 'body' OR $this->getData(['theme', 'menu', 'position']) === 'site-second'
) { ) {
$css .= 'nav{margin:20px 20px 0 20px}'; $css .= 'nav{margin:20px 20px 0 20px}';
} }