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:
authorThomas Steur <thomas.steur@gmail.com>2013-12-18 03:39:56 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-18 03:39:56 +0400
commit899f1e2a6ef89c4f777be49047ba229a2edbee9e (patch)
tree6eae4043724ae82283f0a53782c193531d7b3c27 /core/DataTable/Filter/ColumnCallbackAddColumn.php
parent1c5b7696790f028f289bfa9e6779f81f1a53eab8 (diff)
rename class Filter -> BaseFilter to prevent error "two constructors are defined on PHP 5.3.2"
Diffstat (limited to 'core/DataTable/Filter/ColumnCallbackAddColumn.php')
-rwxr-xr-xcore/DataTable/Filter/ColumnCallbackAddColumn.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/DataTable/Filter/ColumnCallbackAddColumn.php b/core/DataTable/Filter/ColumnCallbackAddColumn.php
index d65d844e9c..0cbd4a8b06 100755
--- a/core/DataTable/Filter/ColumnCallbackAddColumn.php
+++ b/core/DataTable/Filter/ColumnCallbackAddColumn.php
@@ -11,7 +11,7 @@
namespace Piwik\DataTable\Filter;
use Piwik\DataTable;
-use Piwik\DataTable\Filter;
+use Piwik\DataTable\BaseFilter;
/**
* Adds a new column to every row of a {@link DataTable} based on the result of callback.
@@ -28,7 +28,7 @@ use Piwik\DataTable\Filter;
* @subpackage DataTable
* @api
*/
-class ColumnCallbackAddColumn extends Filter
+class ColumnCallbackAddColumn extends BaseFilter
{
/**
* The names of the columns to pass to the callback.