From 3be405125f59d95d61a5eb2727dc86addc7db440 Mon Sep 17 00:00:00 2001 From: sgiehl Date: Tue, 6 Jan 2015 11:13:05 +0100 Subject: fixes #6490 - enabled search field for some reports --- plugins/DevicesDetection/Reports/GetBrand.php | 2 +- plugins/DevicesDetection/Reports/GetBrowserVersions.php | 2 +- plugins/DevicesDetection/Reports/GetBrowsers.php | 2 +- plugins/DevicesDetection/Reports/GetModel.php | 2 +- plugins/DevicesDetection/Reports/GetOsVersions.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/DevicesDetection') diff --git a/plugins/DevicesDetection/Reports/GetBrand.php b/plugins/DevicesDetection/Reports/GetBrand.php index b76eb35c7c..070b2d8918 100644 --- a/plugins/DevicesDetection/Reports/GetBrand.php +++ b/plugins/DevicesDetection/Reports/GetBrand.php @@ -26,7 +26,7 @@ class GetBrand extends Base public function configureView(ViewDataTable $view) { - $view->config->show_search = false; + $view->config->show_search = true; $view->config->show_exclude_low_population = false; $view->config->addTranslation('label', Piwik::translate("DevicesDetection_dataTableLabelBrands")); } diff --git a/plugins/DevicesDetection/Reports/GetBrowserVersions.php b/plugins/DevicesDetection/Reports/GetBrowserVersions.php index 0e26223d30..77f1541785 100644 --- a/plugins/DevicesDetection/Reports/GetBrowserVersions.php +++ b/plugins/DevicesDetection/Reports/GetBrowserVersions.php @@ -26,7 +26,7 @@ class GetBrowserVersions extends Base public function configureView(ViewDataTable $view) { - $view->config->show_search = false; + $view->config->show_search = true; $view->config->show_exclude_low_population = false; $view->config->addTranslation('label', $this->dimension->getName()); } diff --git a/plugins/DevicesDetection/Reports/GetBrowsers.php b/plugins/DevicesDetection/Reports/GetBrowsers.php index 82f1677c33..c34c604da8 100644 --- a/plugins/DevicesDetection/Reports/GetBrowsers.php +++ b/plugins/DevicesDetection/Reports/GetBrowsers.php @@ -27,7 +27,7 @@ class GetBrowsers extends Base public function configureView(ViewDataTable $view) { $view->config->title = $this->name; - $view->config->show_search = false; + $view->config->show_search = true; $view->config->show_exclude_low_population = false; $view->config->addTranslation('label', $this->dimension->getName()); } diff --git a/plugins/DevicesDetection/Reports/GetModel.php b/plugins/DevicesDetection/Reports/GetModel.php index 70fa3a0005..e2241e1ad4 100644 --- a/plugins/DevicesDetection/Reports/GetModel.php +++ b/plugins/DevicesDetection/Reports/GetModel.php @@ -26,7 +26,7 @@ class GetModel extends Base public function configureView(ViewDataTable $view) { - $view->config->show_search = false; + $view->config->show_search = true; $view->config->show_exclude_low_population = false; $view->config->addTranslation('label', Piwik::translate("DevicesDetection_dataTableLabelModels")); } diff --git a/plugins/DevicesDetection/Reports/GetOsVersions.php b/plugins/DevicesDetection/Reports/GetOsVersions.php index 4596a4dd74..76ded09255 100644 --- a/plugins/DevicesDetection/Reports/GetOsVersions.php +++ b/plugins/DevicesDetection/Reports/GetOsVersions.php @@ -27,7 +27,7 @@ class GetOsVersions extends Base public function configureView(ViewDataTable $view) { $view->config->title = $this->name; - $view->config->show_search = false; + $view->config->show_search = true; $view->config->show_exclude_low_population = false; $view->config->addTranslation('label', Piwik::translate("DevicesDetection_dataTableLabelSystemVersion")); } -- cgit v1.2.3