[chora] Date display wrong in Chora 0.6.1 and 1.0
   
    Colin Viebrock
     
    colin@easydns.com
       
    Mon, 18 Feb 2002 14:57:57 -0500
    
    
  
> This is what is on line 182 of cvs.php in latest CVS:
>         $commitDate = date('jS F Y, g:ia', $lg->date);
>
> ... sorry, I'm confused.
My point was, shoulnd't we be using gmstrftime() and strftime() instead of
date() and gmdate() when displaying dates?  That way the dates follow the
same i18n as the rest of the site.
So, I was proposing that line 182 in cvs.php instead read:
    $commitDate = gmstrftime('%c', $lg->date);
- Colin