created_date not updated when copying an event

  • Jeff Dun
  • Topic Author
  • Offline
  • New Member
  • New Member
More
8 months 1 week ago #160166 by Jeff Dun
created_date is only updated in libraries\rad\model\admin.php if its a new event and if the property doesn't have a value:

            if (property_exists($row, 'created_date') && !$row->created_date)
            {
                $row->created_date = Factory::getDate()->toSql();
            }

But if we are copying, shouldn't the date be updated?

Thanks
Jeff

Please Log in or Create an account to join the conversation.