Liste des modules utilisés sur bonvga.net :
Cette liste ne contient pas les modules installés de base avec drupal.
Correctifs, patchs & configuration
module troll
Evite une erreur systematique du array_merge :
383c383,385
< $pager = theme('pager', NULL, 25, 0, array_merge(tablesort_pager(),(is_array($edit)?$edit:array()) ));
---
> $pager = theme('pager', NULL, 25, 0, array_merge(tablesort_pager(),$edit));module taxonomy_block
Juste une question de charte 
253c253
< $content .= '<div class="more-link">'. l(t("more"), 'taxonomy/term/'.implode($tids, '+'), array("title" => t("View all."))) .'</div>';
---
> $content .= '<div>'. l(t("more"), 'taxonomy/term/'. implode($tids, '+'),array("title" => t("View all."))) .'</div>';module freemind
Evite une erreur du foreach quand la variable est vide
38,40d37
< // bonvga : bugfix
< if ($fr_overview_vocab)
< {
44d40
< }ajax_spellcheck
Passe le correcteur d'orthographe en français.
44c44
< $result = drupal_http_request('http://www.google.com/tbproxy/spell?lang=fr',array('Content-Type' => 'text/xml'), 'POST', $xml);
---
> $result = drupal_http_request('http://www.google.com/tbproxy/spell?lang=en',array('Content-Type' => 'text/xml'), 'POST', $xml);comment
Enlève l'age des commentaires sur le bloc.
//$items[] = l($comment->subject, 'node/'. $comment->nid, NULL, NULL,'comment-'. $comment->cid) .'<br />'. t('%time ago',array('%time' => format_interval(time() - $comment->timestamp)));
$items[] = l($comment->subject, 'node/'. $comment->nid, NULL, NULL,'comment-'. $comment->cid);