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:
authormattpiwik <matthieu.aubry@gmail.com>2011-09-11 08:03:30 +0400
committermattpiwik <matthieu.aubry@gmail.com>2011-09-11 08:03:30 +0400
commit3345bccec1fb4b2a69ca97c802b515718a8d9e65 (patch)
tree9f4fba967299a9501c9e6e03b86f542880174575 /core/Segment.php
parent953e02311cf88bb83db07fe7eae5d366f3d16fe7 (diff)
Refs #2633 Adding one test + mysql function replace also replaces _ (for functions such as UNIX_TIMESTAMP)
git-svn-id: http://dev.piwik.org/svn/trunk@5148 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Segment.php')
-rw-r--r--core/Segment.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Segment.php b/core/Segment.php
index 1bdd973a67..fc858a3fa1 100644
--- a/core/Segment.php
+++ b/core/Segment.php
@@ -209,10 +209,12 @@ class Piwik_Segment
$sql = $this->buildSelectQuery($select, $from, $where, $orderBy, $groupBy);
}
- return array(
+ $return = array(
'sql' => $sql,
'bind' => $bind
);
+ //var_dump($return);
+ return $return;
}
/**