Changeset 79

Show
Ignore:
Timestamp:
08/27/07 13:36:51 (17 months ago)
Author:
verbosus
Message:

Fixed bug with zero-indexed month numbers in damned PHP

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • hacks/trunk/feedphp/feed.php

    r74 r79  
    66   *  
    77   * author: Antonio Cavedoni <http://cavedoni.com/> 
    8    * version: 0.2 
     8   * version: 0.3 
    99   * revision: $Id$ 
    1010   * license: BSD 
     
    122122            $d['tm_min'], 
    123123            $d['tm_sec'], 
    124             $d['tm_mon'], 
     124            $d['tm_mon'] + 1, // bloody zero-indexed PHP month numbers! 
    125125            $d['tm_mday'], 
    126126            $d['tm_year']