Changeset 47991 in spip-zone for _plugins_/Association/Associaspip/exec/association.php
- Timestamp:
- May 21, 2011, 5:06:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/Association/Associaspip/exec/association.php
r47477 r47991 15 15 include_spip('inc/presentation'); 16 16 include_spip ('inc/navigation_modules'); 17 include_spip ('inc/voir_adherent'); // pour voir_adherent_infos 17 18 18 19 function exec_association() { … … 69 70 echo '<th>' . _T('asso:telephone') . ' / ' . _T('asso:email') . "</th>\n"; 70 71 echo '</tr>'; 71 $query = sql_select("a.id_auteur, a.mobile, a.telephone, a.statut_interne, a.fonction, b.email, a.nom_famille, a.prenom, a.sexe",'spip_asso_membres' . " a INNER JOIN spip_auteurs AS b ON a.id_auteur=b.id_auteur", "a.fonction !='' AND a.statut_interne != 'sorti'", '', "a.nom_famille"); 72 $query = voir_adherent_infos("*", '', "fonction !='' AND statut_interne != 'sorti'", '', "nom_famille"); 73 72 74 while ($data = sql_fetch($query)) { 73 75 $id_auteur=$data['id_auteur'];
Note: See TracChangeset
for help on using the changeset viewer.