Changeset 16893


Ignore:
Timestamp:
01/26/11 12:32:40 (16 months ago)
Author:
dar
Message:

[4.0.1x] Correction de l'affichage des dates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.0.1x/Xul_Commons/modules/scenariCommons/commons/i18n.jsm

    r16288 r16893  
    129129                                vDateFormat, 
    130130                                pDate.getFullYear(), 
    131                                 pDate.getMonth(), 
    132                                 pDate.getDay() 
     131                                pDate.getMonth()+1, 
     132                                pDate.getDate() 
    133133                ); 
    134134        } else { 
     
    139139                                vTimeFormat, 
    140140                                pDate.getFullYear(), 
    141                                 pDate.getMonth(), 
    142                                 pDate.getDay(), 
     141                                pDate.getMonth()+1, 
     142                                pDate.getDate(), 
    143143                                pDate.getHours(), 
    144144                                pDate.getMinutes(), 
Note: See TracChangeset for help on using the changeset viewer.