Merge branch '3.8'

This commit is contained in:
Romain Neutron
2013-12-20 16:46:35 +01:00
7 changed files with 16 additions and 16 deletions

View File

@@ -68,7 +68,7 @@ class module_report_sqlaction extends module_report_sql implements module_report
$stmt = $this->getConnBas()->prepare($this->sql);
$stmt->execute($this->params);
$this->total = $stmt->rowCount();
$this->total_row = $stmt->rowCount();
$stmt->closeCursor();
$this->sql .= $this->filter->getOrderFilter($customFieldMap) ? : '';
@@ -91,7 +91,7 @@ class module_report_sqlaction extends module_report_sql implements module_report
$stmt = $this->getConnBas()->prepare($this->sql);
$stmt->execute($this->params);
$this->total = $stmt->rowCount();
$this->total_row = $stmt->rowCount();
$stmt->closeCursor();
}