websiteWebsite
bechamail Bechamail
Bechamail est un outil de gestion des adresses email par domaine, avant tout orienté utilisateur final.

 

Browse the code

Differences between 120 and 121 on /.
Number of edited files: 3 (0 added, 0 deleted and 3 modified)
Author: zenjo
Log message: Correction bug nom de champ alias incorrect dans ajoute-alias.php
Date: 2009-04-14 11:37:03

Added file(s) Deleted file(s) Modified file(s)

 

Old New Code
3 3
<entry
4 4
   kind="dir"
5 5
   path="."
6  
   revision="115">
7  
<url>http://svn.codingteam.net/code/bechamail/stables/0.9.1</url>
  6
   revision="116">
  7
<url>http://svn.codingteam.net/code/bechamail/stables</url>
8 8
<repository>
9 9
<root>http://svn.codingteam.net/code/bechamail</root>
10 10
<uuid>f9b7b763-9970-474c-87d9-ba888ff6c2cf</uuid>
13 13
<schedule>normal</schedule>
14 14
</wc-info>
15 15
<commit
16  
   revision="115">
  16
   revision="116">
17 17
<author>zenjo</author>
18  
<date>2008-12-23T16:24:57.017181Z</date>
  18
<date>2008-12-23T16:28:05.364014Z</date>
19 19
</commit>
20 20
</entry>
21 21
</info>
22 22

                                        

 

Old New Code
3 3
<entry
4 4
   kind="dir"
5 5
   path="."
6  
   revision="119">
7  
<url>http://svn.codingteam.net/code/bechamail/versions/0.9.2.alpha</url>
  6
   revision="120">
  7
<url>http://svn.codingteam.net/code/bechamail</url>
8 8
<repository>
9 9
<root>http://svn.codingteam.net/code/bechamail</root>
10 10
<uuid>f9b7b763-9970-474c-87d9-ba888ff6c2cf</uuid>
11 11
</repository>
12 12
<wc-info>
13 13
<schedule>normal</schedule>
  14
<depth>infinity</depth>
14 15
</wc-info>
15 16
<commit
16  
   revision="119">
  17
   revision="121">
17 18
<author>zenjo</author>
18  
<date>2009-03-02T16:33:34.858994Z</date>
  19
<date>2009-03-04T10:11:02.391302Z</date>
19 20
</commit>
20 21
</entry>
21 22
</info>
22 23

                                        

 

Old New Code
110 110
   // on compte si le nombre de alias n'est pas depasse
111 111
   if (isset($conf_champ_nb_alias_defaut)) {
112 112
   	$verif_nb_alias = new ReqSql($hm_, $um_, $pm_, $nm_);
113  
	   $sel = "count(".$conf_mb_email[0].")";
  113
	   $sel = "count(".$conf_champ_alias.")";
114 114
	   $from = $conf_table_alias;
115  
      $whe = $conf_mb_email[0]." like '%@".$f_domaine."'";
  115
      $whe = $conf_champ_alias." like '%@".$f_domaine."'";
116 116
	   $verif_nb_alias->RS_select($sel, $from, $whe);
117 117
	   mysql_free_result($verif_nb_alias->RS_res);
118 118
   	
119 119