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/Installation
parentd6c007dd4e87b0250a5ee3b2d6b50ec6e755af0c (diff)
added missing ';' / use double quotes for attribute values instead of single quotes
Diffstat (limited to 'plugins/Installation')
-rw-r--r--plugins/Installation/templates/_systemCheckLegend.twig4
-rwxr-xr-xplugins/Installation/templates/_systemCheckSection.twig2
-rw-r--r--plugins/Installation/templates/databaseCheck.twig2
-rw-r--r--plugins/Installation/templates/layout.twig2
-rw-r--r--plugins/Installation/templates/systemCheck.twig2
-rwxr-xr-xplugins/Installation/templates/systemCheckPage.twig8
-rw-r--r--plugins/Installation/templates/tablesCreation.twig2
7 files changed, 11 insertions, 11 deletions
diff --git a/plugins/Installation/templates/_systemCheckLegend.twig b/plugins/Installation/templates/_systemCheckLegend.twig
index 04e1c20edf..fdd8f7475a 100644
--- a/plugins/Installation/templates/_systemCheckLegend.twig
+++ b/plugins/Installation/templates/_systemCheckLegend.twig
@@ -4,9 +4,9 @@
<br/>
<img src='plugins/Zeitgeist/images/warning.png'/> <span class="warn">{{ 'General_Warning'|translate }}: {{ 'Installation_SystemCheckWarning'|translate }}</span>
<br/>
- <img src='plugins/Zeitgeist/images/error.png'/> <span style="color:red;font-weight:bold">{{ 'General_Error'|translate }}
+ <img src='plugins/Zeitgeist/images/error.png'/> <span style="color:red;font-weight:bold;">{{ 'General_Error'|translate }}
: {{ 'Installation_SystemCheckError'|translate }} </span><br/>
- <img src='plugins/Zeitgeist/images/ok.png'/> <span style="color:#26981C;font-weight:bold">{{ 'General_Ok'|translate }}</span><br/>
+ <img src='plugins/Zeitgeist/images/ok.png'/> <span style="color:#26981C;font-weight:bold;">{{ 'General_Ok'|translate }}</span><br/>
</small>
</div>
diff --git a/plugins/Installation/templates/_systemCheckSection.twig b/plugins/Installation/templates/_systemCheckSection.twig
index 454f19579d..2675e2467b 100755
--- a/plugins/Installation/templates/_systemCheckSection.twig
+++ b/plugins/Installation/templates/_systemCheckSection.twig
@@ -110,7 +110,7 @@
{% if bool %}
{{ ok }}
{% else %}
- <span style="color:red">{{ error }}</span>
+ <span style="color:red;">{{ error }}</span>
{% endif %}
{{ dir }}
<br/>
diff --git a/plugins/Installation/templates/databaseCheck.twig b/plugins/Installation/templates/databaseCheck.twig
index a65be33046..e5c8e8bea8 100644
--- a/plugins/Installation/templates/databaseCheck.twig
+++ b/plugins/Installation/templates/databaseCheck.twig
@@ -21,7 +21,7 @@
<tr>
<td colspan="2">
<small>
- <span style="color:#FF7F00">{{ clientVersionWarning }}</span>
+ <span style="color:#FF7F00;">{{ clientVersionWarning }}</span>
</small>
</td>
</tr>
diff --git a/plugins/Installation/templates/layout.twig b/plugins/Installation/templates/layout.twig
index d7b8fb4ff5..63bf07cc0f 100644
--- a/plugins/Installation/templates/layout.twig
+++ b/plugins/Installation/templates/layout.twig
@@ -22,7 +22,7 @@
<img id="title" width='160' src="plugins/Zeitgeist/images/logo.png"/> &nbsp;&nbsp;&nbsp;<span
id="subtitle"># {{ 'General_OpenSourceWebAnalytics'|translate }}</span>
</div>
- <div style="float:right" id="topRightBar">
+ <div style="float:right;" id="topRightBar">
<br/>
{{ postEvent('template_topBar')|raw }}
</div>
diff --git a/plugins/Installation/templates/systemCheck.twig b/plugins/Installation/templates/systemCheck.twig
index 51dbc46167..0cc06ae41d 100644
--- a/plugins/Installation/templates/systemCheck.twig
+++ b/plugins/Installation/templates/systemCheck.twig
@@ -3,7 +3,7 @@
{% block content %}
{% if not showNextStep %}
{% include "@Installation/_systemCheckLegend.twig" %}
- <br style="clear:both">
+ <br style="clear:both;">
{% endif %}
<h3>{{ 'Installation_SystemCheck'|translate }}</h3>
diff --git a/plugins/Installation/templates/systemCheckPage.twig b/plugins/Installation/templates/systemCheckPage.twig
index 7739f7c72e..eea9ca86b9 100755
--- a/plugins/Installation/templates/systemCheckPage.twig
+++ b/plugins/Installation/templates/systemCheckPage.twig
@@ -3,15 +3,15 @@
{% block content %}
{% if isSuperUser %}
<h2>{{ 'Installation_SystemCheck'|translate }}</h2>
- <p style="margin-left:1em">
+ <p style="margin-left:1em;">
{% if infos.has_errors %}
- <img src='plugins/Zeitgeist/images/error.png'/>
+ <img src="plugins/Zeitgeist/images/error.png"/>
{{ 'Installation_SystemCheckSummaryThereWereErrors'|translate('<strong>','</strong>','<strong><em>','</em></strong>')|raw }} {{ 'Installation_SeeBelowForMoreInfo'|translate }}
{% elseif infos.has_warnings %}
- <img src='plugins/Zeitgeist/images/warning.png'/>
+ <img src="plugins/Zeitgeist/images/warning.png"/>
{{ 'Installation_SystemCheckSummaryThereWereWarnings'|translate }} {{ 'Installation_SeeBelowForMoreInfo'|translate }}
{% else %}
- <img src='plugins/Zeitgeist/images/ok.png'/>
+ <img src="plugins/Zeitgeist/images/ok.png"/>
{{ 'Installation_SystemCheckSummaryNoProblems'|translate }}
{% endif %}
</p>
diff --git a/plugins/Installation/templates/tablesCreation.twig b/plugins/Installation/templates/tablesCreation.twig
index dac4d26e11..e6ad3e174b 100644
--- a/plugins/Installation/templates/tablesCreation.twig
+++ b/plugins/Installation/templates/tablesCreation.twig
@@ -7,7 +7,7 @@
<div class="warning">{{ 'Installation_TablesWithSameNamesFound'|translate("<span id='linkToggle'>","</span>")|raw }}
<img src="plugins/Zeitgeist/images/warning_medium.png"/>
</div>
- <div id="toggle" style="display:none;color:#4F2410">
+ <div id="toggle" style="display:none;color:#4F2410;">
<small>
<i>{{ 'Installation_TablesFound'|translate }}: <br/>
{{ tablesInstalled }} </i>