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:
authordiosmosis <benaka@piwik.pro>2015-09-22 02:32:20 +0300
committerdiosmosis <benaka@piwik.pro>2015-09-23 10:57:33 +0300
commit140f2257e646378da5b3f68091f1c9e289cb4f89 (patch)
treeb845559fbd426dff61515fe2de5f77530c9ca588 /plugins
parent38a3da2655f1d3011be33725357dab1d4af5bb85 (diff)
Rename SegmentExpression::getSegmentString() to getSegmentDefinition().
Diffstat (limited to 'plugins')
-rw-r--r--plugins/SegmentEditor/SegmentQueryDecorator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SegmentEditor/SegmentQueryDecorator.php b/plugins/SegmentEditor/SegmentQueryDecorator.php
index ec9f712c6c..a8f30393c0 100644
--- a/plugins/SegmentEditor/SegmentQueryDecorator.php
+++ b/plugins/SegmentEditor/SegmentQueryDecorator.php
@@ -53,7 +53,7 @@ class SegmentQueryDecorator extends LogQueryBuilder
$idSegments = array();
foreach ($allSegments as $segment) {
- if ($segmentExpression->getSegmentString() == $segment['definition']) {
+ if ($segmentExpression->getSegmentDefinition() == $segment['definition']) {
$idSegments[] = $segment['idsegment'];
}
}