Ignore:
Timestamp:
Nov 11, 2013, 6:30:39 PM (10 years ago)
Author:
plg
Message:

feature 2976: add output fields for pwg.users.getList. registration_date,
registration_date_string, registration_date_since, last_visit,
last_visit_string, last_visit_since.

bug fixed: format_date(), removing leading zero on day number

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions.inc.php

    r25427 r25459  
    599599  if ($show_day_name)
    600600  {
    601     $print.= $lang['day'][ $date->format('w') ];
     601    $print.= $lang['day'][ $date->format('w') ].' ';
    602602  }
    603603 
    604   $print.= ' '.$date->format('d');
     604  $print.= $date->format('j');
    605605  $print.= ' '.$lang['month'][ $date->format('n') ];
    606606  $print.= ' '.$date->format('Y');
Note: See TracChangeset for help on using the changeset viewer.