Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2009-07-16 07:33:31 +0400
committerrobocoder <anthon.pang@gmail.com>2009-07-16 07:33:31 +0400
commit6c7df2a728476eb45e85dfcb042c69545763b040 (patch)
treea514ba20c937b530a004e7de1560438e07a264ea /core/DataTable/Filter/AddSummaryRow.php
parent2431c0e8b03e96bc9df97ee4cafcf0dea0226512 (diff)
refs #824 - workaround reported seg fault in some php builds/versions with deeply nested action URLs
git-svn-id: http://dev.piwik.org/svn/trunk@1308 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/DataTable/Filter/AddSummaryRow.php')
-rw-r--r--core/DataTable/Filter/AddSummaryRow.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/DataTable/Filter/AddSummaryRow.php b/core/DataTable/Filter/AddSummaryRow.php
index 8c0c7a5ee1..b02cd21e2e 100644
--- a/core/DataTable/Filter/AddSummaryRow.php
+++ b/core/DataTable/Filter/AddSummaryRow.php
@@ -68,5 +68,6 @@ class Piwik_DataTable_Filter_AddSummaryRow extends Piwik_DataTable_Filter
$newRow->setColumns(array('label' => $this->labelSummaryRow) + $newRow->getColumns());
$this->table->filter('Limit', array(0, $this->startRowToSummarize));
$this->table->addSummaryRow($newRow);
+ unset($rows);
}
}