Subversion Repositories Applications.projet

Rev

Rev 208 | Rev 253 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 208 Rev 249
Line 1... Line 1...
1
<?php
1
<?php
2
// $Id: ezmlm-msgdisplay.php,v 1.4 2007-04-19 15:34:35 neiluj Exp $
2
// $Id: ezmlm-msgdisplay.php,v 1.5 2007-06-25 12:15:07 alexandre_tb Exp $
3
//
3
//
4
// ezmlm-msgdisplay.php - ezmlm-php v2.0
4
// ezmlm-msgdisplay.php - ezmlm-php v2.0
5
// --------------------------------------------------------------
5
// --------------------------------------------------------------
6
// Will parse a template (if specified) and display a message.
6
// Will parse a template (if specified) and display a message.
7
// Includes a default template.
7
// Includes a default template.
Line 146... Line 146...
146
					if ($fichier_suivant >= 100) {
146
					if ($fichier_suivant >= 100) {
147
						$decimal = (string) $fichier_suivant;
147
						$decimal = (string) $fichier_suivant;
148
						$numero = substr($decimal, -2) ;
148
						$numero = substr($decimal, -2) ;
149
						$fichier_suivant = $numero ;
149
						$fichier_suivant = $numero ;
150
					} else {
150
					} else {
151
						if ($fichier_suivant < 9)$fichier_suivant = '0'.$fichier_suivant;
151
						if ($fichier_suivant <= 9)$fichier_suivant = '0'.$fichier_suivant;
152
					}
152
					}
Line 153... Line 153...
153
					
153
					
154
					break;
154
					break;