Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions administrator/components/com_fields/Table/FieldTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,7 @@ public function check()
}
else
{
if (!(int) $this->created_time)
{
$this->created_time = $date->toSql();
}
$this->modified_time = $this->getDbo()->getNullDate();
Comment thread
chmst marked this conversation as resolved.

if (!(int) $this->modified_time)
{
Expand Down
2 changes: 2 additions & 0 deletions administrator/components/com_fields/Table/GroupTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ public function check()
}
else
{
$this->modified = $this->getDbo()->getNullDate();
Comment thread
chmst marked this conversation as resolved.

if (!(int) $this->created)
{
$this->created = $date->toSql();
Expand Down