diff --git a/ecrire/inc_index.php b/ecrire/inc_index.php index 34eaef9927f80c4d444d0b325b87c184fcae93d9..040785bc67ebba253a8117451c60c9d921ec3f3d 100644 --- a/ecrire/inc_index.php +++ b/ecrire/inc_index.php @@ -50,7 +50,6 @@ global $INDEX_objet_associes; $INDEX_objet_associes['spip_articles'] = array('spip_documents'=>1,'spip_auteurs'=>10,'mot'=>3); $INDEX_objet_associes['spip_breves'] = array('spip_documents'=>1,'spip_mots'=>3); $INDEX_objet_associes['spip_rubriques'] = array('spip_documents'=>1,'spip_mots'=>3); -$INDEX_objet_associes['spip_syndic'] = array('spip_documents'=>1,'spip_mots'=>3); $INDEX_objet_associes['spip_documents'] = array('spip_mots'=>3); // Indexation des elements des objets associes @@ -385,20 +384,21 @@ function indexer_elements_associes($table, $id_objet, $table_associe, $valeur) { $relation = $tables_relations[$table]; if (!$relation) $relation = $tables_relations[$table_abreg]; if ( ($relation) - &&(isset($relation[$col_id_as])) ) + &&(isset($relation[$col_id_as])) ){ + $table_rel = $relation[$col_id_as]; - - $select="assoc.$col_id_as"; - foreach(array_keys($INDEX_elements_associes[$table_associe]) as $quoi) - $select.=',assoc.' . $quoi; - $q = "SELECT $select FROM $table_associe AS assoc, - spip_$table_rel AS lien - WHERE lien.$col_id=$id_objet - AND assoc.$col_id_as=lien.$col_id_as"; - - $r = spip_query($q); - while ($row = spip_fetch_array($r)) { - indexer_les_champs($row,$INDEX_elements_associes[$table_associe],$valeur); + $select="assoc.$col_id_as"; + foreach(array_keys($INDEX_elements_associes[$table_associe]) as $quoi) + $select.=',assoc.' . $quoi; + $q = "SELECT $select FROM $table_associe AS assoc, + spip_$table_rel AS lien + WHERE lien.$col_id=$id_objet + AND assoc.$col_id_as=lien.$col_id_as"; + + $r = spip_query($q); + while ($row = spip_fetch_array($r)) { + indexer_les_champs($row,$INDEX_elements_associes[$table_associe],$valeur); + } } } } diff --git a/ecrire/inc_utils.php b/ecrire/inc_utils.php index 852fca970558d1540c6eaa159656b08868092b25..3942efa634f76a2d7439978b62214f4e7e8b7b67 100644 --- a/ecrire/inc_utils.php +++ b/ecrire/inc_utils.php @@ -613,7 +613,7 @@ function find_in_path ($filename, $sinon = NULL, $path='AUTO') { return $f; } } - spip_log("find_in_path n'a pas vu '$filename' dans $path"); +# spip_log("find_in_path n'a pas vu '$filename' dans $path"); } // predicat sur les scripts de ecrire qui n'authentifient pas par cookie