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
path: root/core
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@gmail.com>2013-12-03 07:06:29 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-03 07:06:29 +0400
commitf0fa7f115bfe7868243907579787efc9bb659358 (patch)
tree9b7e6b663cf1c0ee2b1f0ea6f064f953fb78b178 /core
parentee2936a03c196c45bfdaa6cf9e0d3beefd74cb12 (diff)
refs #4244 fix more links
Diffstat (limited to 'core')
-rw-r--r--core/DataAccess/LogAggregator.php3
-rw-r--r--core/DataTable/Filter/Sort.php2
-rw-r--r--core/Filesystem.php4
-rw-r--r--core/Mail.php2
-rw-r--r--core/ViewDataTable/Config.php3
5 files changed, 7 insertions, 7 deletions
diff --git a/core/DataAccess/LogAggregator.php b/core/DataAccess/LogAggregator.php
index 803a979cb0..43fdb295d5 100644
--- a/core/DataAccess/LogAggregator.php
+++ b/core/DataAccess/LogAggregator.php
@@ -239,7 +239,6 @@ class LogAggregator
/**
* Aggregates visit logs, optionally grouping by some dimension, and returns the aggregated data.
*
- * <a name="queryVisitsByDimension-result-set"></a>
* **Result Set**
*
* The following columns are in each row of the result set:
@@ -285,7 +284,7 @@ class LogAggregator
* A pre-configured ranking query instance that will be used to limit the result.
* If set, the return value is the array returned by {@link Piwik\RankingQuery::execute()}.
* @return mixed A Zend_Db_Statement if `$rankingQuery` isn't supplied, otherwise the result of
- * {@link Piwik\RankingQuery::execute()}. Read [this](#queryVisitsByDimension-result-set)
+ * {@link Piwik\RankingQuery::execute()}. Read {@link queryVisitsByDimension() this}
* to see what aggregate data is calculated by the query.
* @api
*/
diff --git a/core/DataTable/Filter/Sort.php b/core/DataTable/Filter/Sort.php
index 2bf4c0ba41..3976a2417b 100644
--- a/core/DataTable/Filter/Sort.php
+++ b/core/DataTable/Filter/Sort.php
@@ -35,7 +35,7 @@ class Sort extends Filter
* @param DataTable $table The table to eventually filter.
* @param string $columnToSort The name of the column to sort by.
* @param string $order order `'asc'` or `'desc'`.
- * @param bool $naturalSort Whether to use a natural sort or not (see [http://php.net/natsort](#http://php.net/natsort)).
+ * @param bool $naturalSort Whether to use a natural sort or not (see {@link http://php.net/natsort}).
* @param bool $recursiveSort Whether to sort all subtables or not.
*/
public function __construct($table, $columnToSort, $order = 'desc', $naturalSort = true, $recursiveSort = false)
diff --git a/core/Filesystem.php b/core/Filesystem.php
index 3b32094bcf..40c4a3b6ab 100644
--- a/core/Filesystem.php
+++ b/core/Filesystem.php
@@ -170,11 +170,11 @@ class Filesystem
/**
* Recursively find pathnames that match a pattern.
- * See [glob](#http://php.net/manual/en/function.glob.php) for more info.
+ * See {@link #http://php.net/manual/en/function.glob.php glob} for more info.
*
* @param string $sDir directory The directory to glob in.
* @param string $sPattern pattern The pattern to match paths against.
- * @param int $nFlags `glob()` flags. See [http://php.net/manual/en/function.glob.php](#http://php.net/manual/en/function.glob.php).
+ * @param int $nFlags `glob()` flags. See {@link http://php.net/manual/en/function.glob.php}.
* @return array The list of paths that match the pattern.
* @api
*/
diff --git a/core/Mail.php b/core/Mail.php
index 903d773fac..85c932ca67 100644
--- a/core/Mail.php
+++ b/core/Mail.php
@@ -14,7 +14,7 @@ use Zend_Mail;
/**
* Class for sending mails, for more information see:
- * [http://framework.zend.com/manual/en/zend.mail.html](#http://framework.zend.com/manual/en/zend.mail.html)
+ * {@link http://framework.zend.com/manual/en/zend.mail.html}
*
* @package Piwik
* @see Zend_Mail, libs/Zend/Mail.php
diff --git a/core/ViewDataTable/Config.php b/core/ViewDataTable/Config.php
index 493d67eab0..ee576a6d5b 100644
--- a/core/ViewDataTable/Config.php
+++ b/core/ViewDataTable/Config.php
@@ -23,7 +23,8 @@ use Piwik\Plugins\API\API;
*
* Client side properties are properties that should be passed on to the browser so
* client side JavaScript can use them. Only affects ViewDataTables that output HTML.
- *
+ *
+ * <a name="overridable-properties-desc"></a>
* **Overridable Properties**
*
* Overridable properties are properties that can be set via the query string.