blog param null version compare
This commit is contained in:
parent
e22ad9998d
commit
0f069e0302
@ -124,12 +124,9 @@ class blog extends common {
|
|||||||
* Appelée par les fonctions index et config
|
* Appelée par les fonctions index et config
|
||||||
*/
|
*/
|
||||||
private function update() {
|
private function update() {
|
||||||
// Eviter valeur null
|
|
||||||
if (is_null($this->getData(['module', $this->getUrl(0), 'config', 'versionData'])) ){
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Initialisation
|
// Initialisation
|
||||||
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '0.0', '<') ) {
|
if (is_null($this->getData(['module', $this->getUrl(0), 'config', 'versionData'])) ||
|
||||||
|
version_compare($this->getData(['module', $this->getUrl(0), 'config', 'versionData']), '0.0', '<') ) {
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'feeds', true]);
|
$this->setData(['module', $this->getUrl(0), 'config', 'feeds', true]);
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'feedsLabel', 'Flux RSS']);
|
$this->setData(['module', $this->getUrl(0), 'config', 'feedsLabel', 'Flux RSS']);
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'versionData','4.0']);
|
$this->setData(['module', $this->getUrl(0), 'config', 'versionData','4.0']);
|
||||||
|
Loading…
Reference in New Issue
Block a user