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:
authorJens Averkamp <j.averkamp@two-developers.com>2015-06-26 17:22:03 +0300
committerJens Averkamp <j.averkamp@two-developers.com>2015-06-26 17:22:03 +0300
commitb5bc728994477574bf915236df49ed305be795a3 (patch)
tree8dcfb319f25a9f46bcbfce1b5c8020a3436ff59f /plugins/CoreAdminHome/OptOutManager.php
parent1d1517cfe3e8bb6886fc3ce925c6ea1163aa926f (diff)
Fix Array Keys
Diffstat (limited to 'plugins/CoreAdminHome/OptOutManager.php')
-rw-r--r--plugins/CoreAdminHome/OptOutManager.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/CoreAdminHome/OptOutManager.php b/plugins/CoreAdminHome/OptOutManager.php
index 705b12fb6a..bb671473f6 100644
--- a/plugins/CoreAdminHome/OptOutManager.php
+++ b/plugins/CoreAdminHome/OptOutManager.php
@@ -40,12 +40,12 @@ class OptOutManager
$this->javascripts = array(
'inline' => array(),
- 'extern' => array(),
+ 'external' => array(),
);
$this->stylesheets = array(
'inline' => array(),
- 'extern' => array(),
+ 'external' => array(),
);
}
@@ -55,7 +55,7 @@ class OptOutManager
*/
public function addJavascript($javascript, $inline = true)
{
- $type = $inline ? 'inline' : 'extern';
+ $type = $inline ? 'inline' : 'external';
$this->javascripts[$type][] = $javascript;
}
@@ -73,7 +73,7 @@ class OptOutManager
*/
public function addStylesheet($stylesheet, $inline = true)
{
- $type = $inline ? 'inline' : 'extern';
+ $type = $inline ? 'inline' : 'external';
$this->stylesheets[$type][] = $stylesheet;
}