Skip to content
Extraits de code Groupes Projets
Valider f768e036 rédigé par Fil's avatar Fil
Parcourir les fichiers

<multi> dans les noms de groupes de mots (JMB, Michel Possoz)

parent f1f2473a
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -9,7 +9,6 @@ if ($conf_mot>0) {
$id_mot = $row['id_mot'];
$titre_mot = typo($row['titre']);
$type_mot = typo($row['type']);
$descriptif_mot = $row['descriptif'];
if ($connect_statut=="0minirezo") $aff_articles="prepa,prop,publie,refuse";
else $aff_articles="prop,publie";
......@@ -178,7 +177,7 @@ $result_groupes = spip_query($query_groupes);
while ($row_groupes = spip_fetch_array($result_groupes)) {
$id_groupe = $row_groupes['id_groupe'];
$titre_groupe = $row_groupes['titre'];
$titre_groupe = typo($row_groupes['titre']);
$unseul = $row_groupes['unseul'];
$obligatoire = $row_groupes['obligatoire'];
$articles = $row_groupes['articles'];
......@@ -191,7 +190,7 @@ while ($row_groupes = spip_fetch_array($result_groupes)) {
// Afficher le titre du groupe
debut_cadre_enfonce("groupe-mot-24.gif", false, '', $titre_groupe);
// Affichage des options du groupe (types d'lments, permissions...)
// Affichage des options du groupe (types d'elements, permissions...)
echo "<font face='Verdana,Arial,Sans,sans-serif' size=1>";
if ($articles == "oui") echo "> "._T('info_articles_2')." &nbsp;&nbsp;";
if ($breves == "oui") echo "> "._T('info_breves_02')." &nbsp;&nbsp;";
......@@ -226,8 +225,6 @@ while ($row_groupes = spip_fetch_array($result_groupes)) {
$id_mot = $row['id_mot'];
$titre_mot = $row['titre'];
$type_mot = $row['type'];
$descriptif_mot = $row['descriptif'];
if ($connect_statut == "0minirezo")
$aff_articles="prepa,prop,publie,refuse";
......
......@@ -22,8 +22,9 @@ if ($connect_statut == '0minirezo' AND $new == "oui") {
$result_groupes = spip_query($query_groupes);
while($row = spip_fetch_array($result_groupes)) {
$id_groupe = $row['id_groupe'];
$type = entites_html($row['titre']);
$type = $row['titre'];
$ancien_type = $type;
$titre = typo($type);
$unseul = $row['unseul'];
$obligatoire = $row['obligatoire'];
$articles = $row['articles'];
......@@ -36,7 +37,7 @@ if ($connect_statut == '0minirezo' AND $new == "oui") {
}
}
debut_page("&laquo; $type &raquo;", "documents", "mots");
debut_page("&laquo; $titre &raquo;", "documents", "mots");
debut_gauche();
......@@ -59,7 +60,7 @@ echo "<tr width='100%'>";
echo "<td width='100%' valign='top'>";
echo "<font face='Verdana,Arial,Sans,sans-serif' size=1><b>"._T('titre_groupe_mots')."</b><br></font>";
gros_titre($type);
gros_titre($titre);
echo aide("motsgroupes");
if ($connect_statut =="0minirezo"){
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter