diff --git a/htdocs/comm/mailing/cibles.php b/htdocs/comm/mailing/cibles.php
index 6442c41862c..03d3295fe23 100644
--- a/htdocs/comm/mailing/cibles.php
+++ b/htdocs/comm/mailing/cibles.php
@@ -66,11 +66,9 @@ if ($mil->fetch($_GET["id"]) == 0)
dolibarr_fiche_head($head, $hselected, substr($mil->titre,0,20));
- print_titre($langs->trans("Mailing"));
-
print '
';
- print '| '.$langs->trans("Title").' | '.$mil->titre.' |
';
+ print '| '.$langs->trans("MailTitle").' | '.$mil->titre.' |
';
print '
';
/*
diff --git a/htdocs/comm/mailing/fiche.php b/htdocs/comm/mailing/fiche.php
index 67dc43790ef..32ff9388016 100644
--- a/htdocs/comm/mailing/fiche.php
+++ b/htdocs/comm/mailing/fiche.php
@@ -194,13 +194,11 @@ else
"confirm_approve");
}
- print_titre("Mailing");
-
print '';
print '| '.$langs->trans("MailTitle").' | '.$mil->titre.' |
';
- print '| '.$langs->trans("MailSender").' | '.htmlentities($mil->email_from).' | ';
+ print '
| '.$langs->trans("MailFrom").' | '.htmlentities($mil->email_from).' | ';
print ''.$langs->trans("EMail").' | '.htmlentities($mil->email_from).' |
';
//print '| Réponse | '.htmlentities($mil->email_replyto).' |
';
diff --git a/htdocs/comm/mailing/mailing.class.php b/htdocs/comm/mailing/mailing.class.php
index 246d11c701f..3d826c4953e 100644
--- a/htdocs/comm/mailing/mailing.class.php
+++ b/htdocs/comm/mailing/mailing.class.php
@@ -1,5 +1,6 @@
+ * Copyright (C) 2005 Laurent Destailleur
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -20,13 +21,15 @@
*
*/
-
-
-
-/*! \class Mailing
-
+/** \file htdocs/comm/mailing/mailing.class.php
+ \brief Fichier de la classe de gestion des mailings
+ \version $Revision$
*/
+
+/** \class Mailing
+ \brief Classe permettant la gestion des mailings
+*/
class Mailing
{
var $id;
@@ -157,7 +160,7 @@ class Mailing
/**
* \brief Valide le mailing
- * \param userid id de l'utilisateur qui valide
+ * \param user objet user qui valide
*/
function valid($user)
{
@@ -181,7 +184,7 @@ class Mailing
/**
* \brief Approuve le mailing
- * \param userid id de l'utilisateur qui valide
+ * \param user objet user qui approuve
*/
function approve($user)
{
@@ -204,7 +207,7 @@ class Mailing
/**
* \brief Supprime le mailing
- * \param rowid id à supprimer
+ * \param rowid id du mailing à supprimer
*/
function delete($rowid)
{