Merge branch '10400' into 11000

This commit is contained in:
fredtempez 2020-12-14 12:43:20 +01:00
commit 4b53936fa8
2 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@
## Version 10.3.11
Modification :
- Message sur l'utilisation des cookies
Coorection :
Correction :
- Recherche inopérante dans les articles des blogs.
## Version 10.3.10

View File

@ -178,8 +178,8 @@ class search extends common {
// Articles d'une sous-page blog
if ($this->getData(['page', $childId, 'moduleId']) === 'blog')
{
foreach($this->getData(['module',$childId]) as $articleId => $article) {
if($this->getData(['module',$childId,$articleId,'state']) === true) {
foreach($this->getData(['module',$childId,'posts']) as $articleId => $article) {
if($this->getData(['module',$childId,'posts',$articleId,'state']) === true) {
$url = $childId . '/' . $articleId;
$titre = $article['title'];
$contenu = ' ' . $titre . ' ' . $article['content'];
@ -195,8 +195,8 @@ class search extends common {
// Articles d'un blog
if ($this->getData(['page', $parentId, 'moduleId']) === 'blog' ) {
foreach($this->getData(['module',$parentId]) as $articleId => $article) {
if($this->getData(['module',$parentId,$articleId,'state']) === true)
foreach($this->getData(['module',$parentId,'posts']) as $articleId => $article) {
if($this->getData(['module',$parentId,'posts',$articleId,'state']) === true)
{
$url = $parentId. '/' . $articleId;
$titre = $article['title'];