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:
authorJean Baptiste Noblot <noblot.jb@gmail.com>2020-05-12 23:46:00 +0300
committerGitHub <noreply@github.com>2020-05-12 23:46:00 +0300
commitc870770157a3e9c893308967dc274c8feac5d4be (patch)
tree43f228cba7ae223e859a1165c081a97d380650dd /core/Plugin/ControllerAdmin.php
parent8012467e95430c08342bbfa8510d1f60b9ea317f (diff)
triple equals (#15762)
Diffstat (limited to 'core/Plugin/ControllerAdmin.php')
-rw-r--r--core/Plugin/ControllerAdmin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Plugin/ControllerAdmin.php b/core/Plugin/ControllerAdmin.php
index 071349b80e..3277c01ca7 100644
--- a/core/Plugin/ControllerAdmin.php
+++ b/core/Plugin/ControllerAdmin.php
@@ -132,7 +132,7 @@ abstract class ControllerAdmin extends Controller
protected function setBasicVariablesViewAs($view, $viewType = 'admin')
{
$this->setBasicVariablesNoneAdminView($view);
- if ($viewType == 'admin') {
+ if ($viewType === 'admin') {
self::setBasicVariablesAdminView($view);
}
}