diff --git a/plugins/API/API.php b/plugins/API/API.php index b12e3624c6159c5017b508624e0978fd436cb27f..2acb3bb58f570b5694d3f828e7f2ddae28dc029f 100644 --- a/plugins/API/API.php +++ b/plugins/API/API.php @@ -562,7 +562,11 @@ class Piwik_API_API // if hide/show columns specified, hide/show metrics & docs $availableReport['metrics'] = $this->hideShowMetrics($availableReport['metrics']); $availableReport['processedMetrics'] = $this->hideShowMetrics($availableReport['processedMetrics']); - $availableReport['metricsDocumentation'] = $this->hideShowMetrics($availableReport['metricsDocumentation']); + if (isset($availableReport['metricsDocumentation'])) + { + $availableReport['metricsDocumentation'] = + $this->hideShowMetrics($availableReport['metricsDocumentation']); + } } // Some plugins need to add custom metrics after all plugins hooked in