function _node_entity_diff_additional_options_revision_timestamp in Diff 7.3
Private callback function to render the revision_timestamp field.
File
- includes/
node.inc, line 154 - Provide diff functions for the node module.
Code
function _node_entity_diff_additional_options_revision_timestamp($old_node, $new_node, $context) {
return _node_entity_diff_additional_options_date_field(t('Revision timestamp'), $old_node->revision_timestamp, $new_node->revision_timestamp, $context, -1);
}