Subversion Repositories Applications.projet

Compare Revisions

Ignore whitespace Rev 419 → Rev 420

/trunk/classes/ezmlm-php-2.0/ezmlm-msgdisplay.php
125,8 → 125,10
while (!feof($fichier_index)) {
$temp = fgets($fichier_index,4096);
list($num, $hash, $sujet) = split (':', $temp) ;
$x = preg_match('/(\d+): (\w+) (.*)/', $temp, $matches);
array_shift($matches);
list($num, $hash, $sujet) = $matches;
 
if ($num == $numero_message) {
$ligne_message_precedent = $compteur_ligne -2;