- the day of the week is not displayed when year is prior to 1970

git-svn-id: http://piwigo.org/svn/trunk@698 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2005-01-16 17:28:19 +00:00
parent b9f05888cb
commit c443c97891
2 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -415,7 +415,7 @@ function format_date($date, $type = 'us', $show_time = false)
}
$formated_date = '';
// before 1970, Microsoft Windows can't mktime
if ($year >= 1970 or substr(PHP_OS, 0, 3) != 'WIN')
if ($year >= 1970)
{
// we ask midday because Windows think it's prior to midnight with a
// zero and refuse to work
+8 -5
View File
@@ -647,11 +647,14 @@ SELECT COUNT(DISTINCT(id)) AS count
$page['title'] .= ' (';
if (isset($page['calendar_day']))
{
$unixdate = mktime(0,0,0,
$page['calendar_month'],
$page['calendar_day'],
$page['calendar_year']);
$page['title'].= $lang['day'][date("w", $unixdate)];
if ($page['calendar_year'] >= 1970)
{
$unixdate = mktime(0,0,0,
$page['calendar_month'],
$page['calendar_day'],
$page['calendar_year']);
$page['title'].= $lang['day'][date("w", $unixdate)];
}
$page['title'].= ' '.$page['calendar_day'].', ';
}
if (isset($page['calendar_month']))