Improve date modified returns
This commit is contained in:
parent
8b025ebe81
commit
b510c59bab
|
@ -122,9 +122,14 @@ class Page {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the date according to locale settings and format settings
|
// Returns the date according to locale settings and format settings
|
||||||
public function dateModified()
|
public function dateModified($format=false)
|
||||||
{
|
{
|
||||||
return $this->getValue('dateModified');
|
$dateRaw = $this->getValue('dateModified');
|
||||||
|
if ($format===false) {
|
||||||
|
global $site;
|
||||||
|
$format = $site->dateFormat();
|
||||||
|
}
|
||||||
|
return Date::format($dateRaw, DB_DATE_FORMAT, $format);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the username who created the page
|
// Returns the username who created the page
|
||||||
|
|
Loading…
Reference in New Issue