summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlibrary/SSRS/Report.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/library/SSRS/Report.php b/library/SSRS/Report.php
index 785aad2..e517880 100755
--- a/library/SSRS/Report.php
+++ b/library/SSRS/Report.php
@@ -356,7 +356,10 @@ class SSRS_Report {
* @param array $deviceInfo
*/
public function renderDeviceInfo(array $deviceInfo) {
- $translations = array('_SID_' => $this->_sessionId);
+ $translations = array(
+ '_SID_' => $this->_sessionId,
+ '_TIME_' => time(),
+ );
return $this->renderXmlOptions($deviceInfo, $translations);
}