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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-27 17:23:43 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-27 17:23:43 +0300
commit4e219e09d00212e34681d52bbdbfb74f18597b88 (patch)
tree742782c809e0f1b143ffa0809edd68303629c62f /plugins/Referers/functions.php
parent15821862cb5fb9c7c6021d7e3a2598a3d509a086 (diff)
- summary row label should not be -1 in actions now
- all columns should not be "low population excluded" by default now. can switch to exclude low population when viewing all columns table - i18n on new icon - i18n on Actions table column labels - fixed truncation which should hopefully fix most of display issues when viewing all columns - subtables have more space efficient padding now
Diffstat (limited to 'plugins/Referers/functions.php')
-rw-r--r--plugins/Referers/functions.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/Referers/functions.php b/plugins/Referers/functions.php
index 43a4d3eebc..1d218af35f 100644
--- a/plugins/Referers/functions.php
+++ b/plugins/Referers/functions.php
@@ -9,18 +9,6 @@ function Piwik_getPathFromUrl($url)
return $path;
}
-function Piwik_truncatePath( $path )
-{
- $limit = 27;
- $path = htmlspecialchars_decode($path);
- $len = strlen($path);
- if($len > $limit)
- {
- $path = substr($path, 0, $limit-3) . "...";
- }
- return htmlspecialchars($path);
-}
-
function Piwik_getSearchEngineUrlFromName($name)
{
require_once "DataFiles/SearchEngines.php";