You are here

function phptemplate_privatemsg_list_field__last_updated in Privatemsg 6.2

Same name and namespace in other branches
  1. 6 privatemsg.theme.inc \phptemplate_privatemsg_list_field__last_updated()

Theme the last updated column.

Related topics

File

./privatemsg.theme.inc, line 90
Theme functions for privatemsg.

Code

function phptemplate_privatemsg_list_field__last_updated($thread) {
  $field = array();
  $field['data'] = format_date($thread['last_updated'], 'small');
  $field['class'] = 'privatemsg-list-date';
  return $field;
}