1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-13 18:24:57 +02:00

Bump version to 3.0.208, plus minor optimizations in FieldtypePage

This commit is contained in:
Ryan Cramer
2022-12-02 14:55:29 -05:00
parent adf43d28df
commit a3cc73bd87
3 changed files with 88 additions and 75 deletions

View File

@@ -187,10 +187,10 @@ class WireDebugInfo extends Wire {
if($page->quietMode) $info['quietMode'] = 1;
foreach(array('created', 'modified', 'published') as $key) {
$info[$key] = wireDate($this->wire('config')->dateFormat, $info[$key]) . " " .
$info[$key] = wireDate($this->wire()->config->dateFormat, $info[$key]) . " " .
"(" . wireDate('relative', $info[$key]) . ")";
}
return $info;
}
}
}