# HG changeset patch # User Franck Deroche # Date 1193414976 -7200 # Node ID 20159d39b8f8e868e4a7cfd6bfa8643943953c93 # Parent 6e084c60487669faf75f0ef1d2773e5abc9650bd Correction de l'url pour l'obtention des gravatars. diff -r 6e084c604876 -r 20159d39b8f8 comment.php --- a/comment.php Fri Oct 26 18:01:37 2007 +0200 +++ b/comment.php Fri Oct 26 18:09:36 2007 +0200 @@ -46,7 +46,7 @@ $dateFormatee = strftime(" à %Hh%M le %A %d %B %Y", strtotime($row['DateComment'])); $AdresseMail = $row['AdresseMail']; $grav_id = md5($AdresseMail); - $grav_url = 'http://www.gravatar.com/avatar.php?gravatar_id=' . $grav_id . '&size=50&default=' . $defaultGravatar; + $grav_url = 'http://www.gravatar.com/avatar.php?gravatar_id=' . $grav_id . '&size=50&default=' . $defaultGravatar; $Comment = nl2br($row['Comment']); $Comment = str_replace(" & ", " & ", $Comment); $commentFrag = $commentTpl->getDocumentFragment();