mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
display data changed depending if compare dates or show date directly in the tree view #1976
(cherry picked from commit 93a2d15b2c906fd9cd8e5fc07f19c352743b98b1)
This commit is contained in:
parent
580900438f
commit
dc1dc7012c
@ -168,13 +168,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…
x
Reference in New Issue
Block a user