Form file: /libraries/cms/html/html.php line 801 - 808
if ($gregorian)
{
return $date->format($format, true);
}
else
{
return $date->calendar($format, true);
}
I have followed this file: /libraries/joomla/date/date.php and the both method $date->format($format, true) and $date->calendar($format, true);
look like the same
}
Labels |
Added:
?
|
No there isn't much difference there , it seems to be the same .
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-10-02 14:08:23 |
Closed_By | ⇒ | brianteeman |
Asked and answered
I don't see a difference either. It's probably just stupid legacy code?
Especially since calendar ist just a proxy to format with the exact same params and default values.