Skip to content

Commit

Permalink
EOT Time column, see #83
Browse files Browse the repository at this point in the history
  • Loading branch information
JasWSInc committed Apr 2, 2014
1 parent 506dcac commit ab80217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s2member/includes/classes/users-list.inc.php
Expand Up @@ -210,7 +210,7 @@ public static function users_list_display_cols ($val = FALSE, $col = FALSE, $use
$val = (!empty ($ccaps)) ? implode ("<br />", $ccaps) : "";
}
else if($col === "s2member_auto_eot_time")
$val = ($v = get_user_option ("s2member_auto_eot_time", $user_id)) ? esc_html ($v) : "";
$val = ($v = get_user_option ("s2member_auto_eot_time", $user_id)) ? date("D M jS, Y", (integer)$v) . "<br /><small>@ precisely " . date ("g:i a", (integer)$v)."</small>" : "";

else if (preg_match ("/^s2member_custom_field_/", $col))
{
Expand Down

0 comments on commit ab80217

Please sign in to comment.