display data changed depending if compare dates or show date directly in the tree view #1976
This commit is contained in:
parent
763f291ee9
commit
93a2d15b2c
|
@ -170,13 +170,22 @@ if ($get_module_detail) {
|
|||
"modules_format_data",
|
||||
"align" => "left",
|
||||
"width" => "230px"),
|
||||
"Time" => array(
|
||||
);
|
||||
|
||||
if($config['prominent_time']=='comparation'){
|
||||
$columns["Time"] = array(
|
||||
"utimestamp",
|
||||
"modules_format_time",
|
||||
"align" => "left",
|
||||
"width" => "50px")
|
||||
);
|
||||
|
||||
"width" => "50px");
|
||||
}else{
|
||||
$columns["Timestamp"] = array(
|
||||
"utimestamp",
|
||||
"modules_format_timestamp",
|
||||
"align" => "left",
|
||||
"width" => "50px");
|
||||
}
|
||||
|
||||
if ($selection_mode == "fromnow") {
|
||||
$date = get_system_time();
|
||||
$period = $period;
|
||||
|
|
Loading…
Reference in New Issue