summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
Diffstat (limited to 'library')
-rwxr-xr-xlibrary/SSRS/Object/ExecutionInfo.php4
-rwxr-xr-xlibrary/SSRS/Report.php2
2 files changed, 5 insertions, 1 deletions
diff --git a/library/SSRS/Object/ExecutionInfo.php b/library/SSRS/Object/ExecutionInfo.php
index 31dc9d4..2d3d894 100755
--- a/library/SSRS/Object/ExecutionInfo.php
+++ b/library/SSRS/Object/ExecutionInfo.php
@@ -38,6 +38,10 @@ class SSRS_Object_ExecutionInfo extends SSRS_Object_Abstract {
$this->data['ReportParameters'] = $parameters;
return $this;
}
+
+ public function getReportPath(){
+ return $this->data['ReportPath'];
+ }
/**
* Returns all report parameters in an array
diff --git a/library/SSRS/Report.php b/library/SSRS/Report.php
index a9b2f3a..785aad2 100755
--- a/library/SSRS/Report.php
+++ b/library/SSRS/Report.php
@@ -299,7 +299,7 @@ class SSRS_Report {
*/
public function render($format, $deviceInfo = array(), $PaginationMode = 'Estimate') {
$this->checkSessionId();
- $deviceInfo = array('DeviceInfo' => array_merge(array('Toolbar' => 'false'), $deviceInfo));
+ $deviceInfo = array('DeviceInfo' => $deviceInfo);
$renderParams = array(
'Format' => $format,