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:
authorsgiehl <stefan@piwik.org>2013-08-13 18:17:38 +0400
committersgiehl <stefan@piwik.org>2013-08-14 15:02:40 +0400
commitaa8b2f1f0e6d1bc9af62694448f33d125bf8141a (patch)
tree60521bcc9cd425460de99661498e317d80f90893 /plugins/Zeitgeist
parentd6c007dd4e87b0250a5ee3b2d6b50ec6e755af0c (diff)
added missing ';' / use double quotes for attribute values instead of single quotes
Diffstat (limited to 'plugins/Zeitgeist')
-rw-r--r--plugins/Zeitgeist/templates/admin.twig6
-rw-r--r--plugins/Zeitgeist/templates/ajaxMacros.twig4
-rw-r--r--plugins/Zeitgeist/templates/javascriptCode.tpl2
-rw-r--r--plugins/Zeitgeist/templates/simpleLayoutHeader.tpl2
4 files changed, 7 insertions, 7 deletions
diff --git a/plugins/Zeitgeist/templates/admin.twig b/plugins/Zeitgeist/templates/admin.twig
index ef0fca6029..fd4c1c5e5f 100644
--- a/plugins/Zeitgeist/templates/admin.twig
+++ b/plugins/Zeitgeist/templates/admin.twig
@@ -40,17 +40,17 @@
{% include "@CoreHome/_headerMessage.twig" %}
{% if configFileNotWritable is defined and configFileNotWritable%}
- <div class="ajaxSuccess" style="display:inline-block">
+ <div class="ajaxSuccess" style="display:inline-block;">
{{ 'General_ConfigFileIsNotWritable'|translate("(config/config.ini.php)","<br/>")|raw }}
</div>
{% elseif false %}
- <div class="ajaxSuccess" style="display:inline-block">
+ <div class="ajaxSuccess" style="display:inline-block;">
{{ 'General_YourChangesHaveBeenSaved'|translate }}
</div>
{% endif %}
{% if statisticsNotRecorded is defined and statisticsNotRecorded is not empty %}
- <div class="ajaxSuccess" style="display:inline-block">
+ <div class="ajaxSuccess" style="display:inline-block;">
{{ 'General_StatisticsAreNotRecorded'|translate }}
</div>
{% endif %}
diff --git a/plugins/Zeitgeist/templates/ajaxMacros.twig b/plugins/Zeitgeist/templates/ajaxMacros.twig
index 059892706b..7b0d8ff796 100644
--- a/plugins/Zeitgeist/templates/ajaxMacros.twig
+++ b/plugins/Zeitgeist/templates/ajaxMacros.twig
@@ -1,9 +1,9 @@
{% macro errorDiv(id) %}
- <div class="ajaxError" id="{{ id }}" style="display:none"></div>
+ <div class="ajaxError" id="{{ id }}" style="display:none;"></div>
{% endmacro %}
{% macro loadingDiv(id='ajaxLoadingDiv') %}
-<div id="{{ id }}" style="display:none">
+<div id="{{ id }}" style="display:none;">
<div class="loadingPiwik">
<img src="plugins/Zeitgeist/images/loading-blue.gif" alt="{{ 'General_LoadingData'|translate }}" />{{ 'General_LoadingData'|translate }}
</div>
diff --git a/plugins/Zeitgeist/templates/javascriptCode.tpl b/plugins/Zeitgeist/templates/javascriptCode.tpl
index 4effa42276..eb5dc52dfd 100644
--- a/plugins/Zeitgeist/templates/javascriptCode.tpl
+++ b/plugins/Zeitgeist/templates/javascriptCode.tpl
@@ -12,5 +12,5 @@
})();
</script>
-<noscript><p><img src="http://{$piwikUrl}piwik.php?idsite={$idSite}" style="border:0" alt="" /></p></noscript>
+<noscript><p><img src="http://{$piwikUrl}piwik.php?idsite={$idSite}" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
diff --git a/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl b/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl
index 8e58feb808..bd10070517 100644
--- a/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl
+++ b/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl
@@ -8,4 +8,4 @@
</head>
<body id="simple">
<div id="contentsimple">
- <div id="title"><img title='Piwik' alt="Piwik" src='plugins/Zeitgeist/images/logo-header.png' style='margin-left:10px' /><span id="subh1"> # <a href='http://piwik.org/'>Web Analytics</a></span></div>
+ <div id="title"><img title="Piwik" alt="Piwik" src="plugins/Zeitgeist/images/logo-header.png" style="margin-left:10px;" /><span id="subh1"> # <a href='http://piwik.org/'>Web Analytics</a></span></div>