summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/inc/getdata.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/statistics_reporting/inc/getdata.inc.php')
-rw-r--r--modules-available/statistics_reporting/inc/getdata.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules-available/statistics_reporting/inc/getdata.inc.php b/modules-available/statistics_reporting/inc/getdata.inc.php
index 83f118e6..f65ee868 100644
--- a/modules-available/statistics_reporting/inc/getdata.inc.php
+++ b/modules-available/statistics_reporting/inc/getdata.inc.php
@@ -88,8 +88,8 @@ class GetData
$entry['totalTime_s'] = self::formatSeconds($row['timeSum']);
$entry['medianSessionLength_s'] = self::formatSeconds($median);
$entry['totalOffTime_s'] = self::formatSeconds($row['offlineSum']);
- $entry['lastStart_s'] = date(DATE_ISO8601, $row['lastStart']);
- $entry['lastLogout_s'] = date(DATE_ISO8601, $row['lastLogout']);
+ $entry['lastStart_s'] = $row['lastStart'] == 0 ? "" : date(DATE_ISO8601, $row['lastStart']);
+ $entry['lastLogout_s'] = $row['lastLogout'] == 0 ? "" : date(DATE_ISO8601, $row['lastLogout']);
}
$data[] = $entry;
}