Subversion Repositories eFlore/Applications.del

Compare Revisions

Regard whitespace Rev 1582 → Rev 1598

/trunk/commun/Stats.php
1,5 → 1,4
<?php
 
namespace TelaBotanica\Del\Commun;
 
class Stats {
57,7 → 56,9
' INSERT INTO del_image_stat (ce_image, ce_protocole, moyenne, nb_votes, nb_points)'.
' VALUES (%d, %d, %s, %d, %d)'.
' ON DUPLICATE KEY UPDATE moyenne = %s, nb_votes = %d, nb_points = %d',
$id_image, $id_proto, number_format($moyennePonderee, 3, '.', ''), $nbVotes, $nbPoints, number_format($moyennePonderee, 3, '.', ''), $nbVotes, $nbPoints));
$id_image, $id_proto, number_format($moyennePonderee, 3, '.', ''), $nbVotes, $nbPoints,
number_format($moyennePonderee, 3, '.', ''), $nbVotes, $nbPoints));
}
}
}
?>