- Timestamp:
- Nov 24, 2004, 10:38:12 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/functions.inc.php
r606 r618 393 393 if ($year >= 1970 or substr(PHP_OS, 0, 3) != 'WIN') 394 394 { 395 $formated_date.= $lang['day'][date('w', mktime(0,0,0,$month,$day,$year))]; 395 // we ask midday because Windows think it's prior to midnight with a 396 // zero and refuse to work 397 $formated_date.= $lang['day'][date('w', mktime(12,0,0,$month,$day,$year))]; 396 398 } 397 399 $formated_date.= ' '.$day;
Note: See TracChangeset
for help on using the changeset viewer.