forked from ZwiiCMS-Team/ZwiiCMS
La validation des options du blog ferme l'écran
This commit is contained in:
parent
3f43830154
commit
886ed303be
@ -574,7 +574,7 @@ class blog extends common
|
|||||||
]);
|
]);
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/option',
|
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/config',
|
||||||
'notification' => helper::translate('Modifications enregistrées'),
|
'notification' => helper::translate('Modifications enregistrées'),
|
||||||
'state' => true
|
'state' => true
|
||||||
]);
|
]);
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
# version 6.9
|
# version 6.9
|
||||||
- Bloque l'effacement de l'article selon le profil
|
- Bloque l'effacement de l'article selon le profil
|
||||||
- Masque le code de vérification
|
- Masque le code de vérification
|
||||||
|
- Corrige un défaut d'affichage de l'article dans l'index, lorsque l'article ne contient pas d'image.
|
||||||
# version 6.8
|
# version 6.8
|
||||||
- Erreur de décompte des commentaires approuvés ou non dans l'index
|
- Erreur de décompte des commentaires approuvés ou non dans l'index
|
||||||
# version 6.7
|
# version 6.7
|
||||||
|
@ -62,6 +62,7 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blogDate,
|
.blogDate,
|
||||||
|
@ -72,8 +72,7 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
): ?>
|
): ?>
|
||||||
<a
|
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/edit/' . $articleId; ?>">
|
||||||
href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/edit/' . $articleId; ?>">
|
|
||||||
<?php echo template::ico('pencil'); ?> Éditer
|
<?php echo template::ico('pencil'); ?> Éditer
|
||||||
</a>
|
</a>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@ -149,9 +148,6 @@
|
|||||||
<div class="blogContent">
|
<div class="blogContent">
|
||||||
<?php $lenght = $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) !== 0 ? $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) : 500 ?>
|
<?php $lenght = $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) !== 0 ? $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) : 500 ?>
|
||||||
<?php echo helper::subword(strip_tags($article['content'], '<br><p>'), 0, $lenght); ?>...
|
<?php echo helper::subword(strip_tags($article['content'], '<br><p>'), 0, $lenght); ?>...
|
||||||
<div class="readMoreContainer">
|
|
||||||
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>"><button
|
|
||||||
class="readMoreButton">Lire la suite</button></a>
|
|
||||||
<div class="readMoreContainer">
|
<div class="readMoreContainer">
|
||||||
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>">
|
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>">
|
||||||
<button class="readMoreButton">
|
<button class="readMoreButton">
|
||||||
@ -162,7 +158,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</article>
|
</article>
|
||||||
|
Loading…
Reference in New Issue
Block a user