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:
authormattab <matthieu.aubry@gmail.com>2014-12-05 09:45:31 +0300
committermattab <matthieu.aubry@gmail.com>2014-12-05 09:45:31 +0300
commit3980f9eeed4535032c1e563f39adf8efa4520914 (patch)
tree991feaebf786ccac07621ce0e447afa00107680a /core/RankingQuery.php
parent5c14cf8e5bff649230f91ef7e90dc3d3dd89f9a9 (diff)
Renamed method to have distinct name
Diffstat (limited to 'core/RankingQuery.php')
-rw-r--r--core/RankingQuery.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/RankingQuery.php b/core/RankingQuery.php
index f44845f075..cd4f830669 100644
--- a/core/RankingQuery.php
+++ b/core/RankingQuery.php
@@ -214,7 +214,7 @@ class RankingQuery
*/
public function execute($innerQuery, $bind = array())
{
- $query = $this->generateQuery($innerQuery);
+ $query = $this->generateRankingQuery($innerQuery);
$data = Db::fetchAll($query, $bind);
if ($this->columnToMarkExcludedRows !== false) {
@@ -268,7 +268,7 @@ class RankingQuery
* itself.
* @return string The entire ranking query SQL.
*/
- public function generateQuery($innerQuery)
+ public function generateRankingQuery($innerQuery)
{
// +1 to include "Others"
$limit = $this->limit + 1;