summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarron.woods@gmail.com <arron.woods@gmail.com@deae1e92-32f9-c189-e222-5b9b5081a27a>2012-11-30 11:33:33 +0000
committerarron.woods@gmail.com <arron.woods@gmail.com@deae1e92-32f9-c189-e222-5b9b5081a27a>2012-11-30 11:33:33 +0000
commitd12bcd0a5e390052deeb86efdf8d99b781b78b98 (patch)
treee6208a8a83fdea9d7c6127bc9d4e8553dcf3af60
parent57fc60f4801ef9512f1debfbff4998da8907c013 (diff)
downloadphp-ssrs-d12bcd0a5e390052deeb86efdf8d99b781b78b98.zip
php-ssrs-d12bcd0a5e390052deeb86efdf8d99b781b78b98.tar.gz
php-ssrs-d12bcd0a5e390052deeb86efdf8d99b781b78b98.tar.bz2
Report _TIME_ translation
-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);
}