|
|
|
@ -790,4 +790,21 @@ if ($this->getData(['core', 'dataVersion']) < 11300) {
|
|
|
|
|
|
|
|
|
|
// Mise à jour |
|
|
|
|
$this->setData(['core', 'dataVersion', 11300]); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// Version 11.3.03 |
|
|
|
|
if ($this->getData(['core', 'dataVersion']) < 11303) { |
|
|
|
|
|
|
|
|
|
// Ajout de la variable shortTitle basée sur Title |
|
|
|
|
foreach ($this->getHierarchy(null,null,null) as $parentKey=>$parentValue) { |
|
|
|
|
$pageList [] = $parentKey; |
|
|
|
|
foreach ($parentValue as $childKey) { |
|
|
|
|
$pageList [] = $childKey; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
foreach ($pageList as $parentKey => $parent) { |
|
|
|
|
$this->setData(['page', $parent, 'extraPosition', false]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Mise à jour |
|
|
|
|
$this->setData(['core', 'dataVersion', 11303]); |
|
|
|
|
} |
|
|
|
|