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>2012-02-02 03:54:34 +0400
committermattpiwik <matthieu.aubry@gmail.com>2012-02-02 03:54:34 +0400
commitaace4abaad2032d5eb830036b3198dfa0e59663b (patch)
tree68a7f1a9f05f32c61172f4a2748176c7e68128d3 /plugins/ExampleUI
parent1f8620e210c7ee0abcabff0a693ab9a743da8f86 (diff)
* Refs #534 Removing exit_rate from metadata API, it was added in the standard processed metrics causing other reports to display it with 0% values
* Refs #1465 Leave underscores in test names just to keep tests more readable (even though it is not a best practise to have _ in class prefixes!!) git-svn-id: http://dev.piwik.org/svn/trunk@5739 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/ExampleUI')
-rw-r--r--plugins/ExampleUI/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExampleUI/Controller.php b/plugins/ExampleUI/Controller.php
index f608a8938e..b778b9f318 100644
--- a/plugins/ExampleUI/Controller.php
+++ b/plugins/ExampleUI/Controller.php
@@ -114,7 +114,7 @@ class Piwik_ExampleUI_Controller extends Piwik_Controller
function generateSparkline()
{
- $serverRequested = Piwik_Common::getRequestVar('server');
+ $serverRequested = Piwik_Common::getRequestVar('server', '');
$view = Piwik_ViewDataTable::factory('sparkline');
$view->init( $this->pluginName, __FUNCTION__, 'ExampleUI.getTemperaturesEvolution' );
$view->setColumnsToDisplay($serverRequested);