Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit bd1bd4c

Browse files
committed
updated VENDORS for 3.1.2
1 parent 1979aeb commit bd1bd4c

File tree

3 files changed

+32
-24
lines changed

3 files changed

+32
-24
lines changed

bin/symfony_requirements

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo '> PHP is using the following php.ini file:'.PHP_EOL;
1313
if ($iniPath) {
1414
echo_style('green', ' '.$iniPath);
1515
} else {
16-
echo_style('warning', ' WARNING: No configuration file (php.ini) used by PHP!');
16+
echo_style('yellow', ' WARNING: No configuration file (php.ini) used by PHP!');
1717
}
1818

1919
echo PHP_EOL.PHP_EOL;

composer.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/config.php

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@
9696
.sf-reset .ko {
9797
background-color: #d66;
9898
}
99+
.sf-reset p.help {
100+
padding: 12px 16px;
101+
word-break: break-word;
102+
}
99103
.version {
100104
text-align: right;
101105
font-size: 10px;
@@ -159,7 +163,9 @@
159163
<p>Major problems have been detected and <strong>must</strong> be fixed before continuing:</p>
160164
<ol>
161165
<?php foreach ($majorProblems as $problem): ?>
162-
<li><?php echo $problem->getHelpHtml() ?></li>
166+
<li><?php echo $problem->getTestMessage() ?>
167+
<p class="help"><em><?php echo $problem->getHelpHtml() ?></em></p>
168+
</li>
163169
<?php endforeach; ?>
164170
</ol>
165171
<?php endif; ?>
@@ -172,7 +178,9 @@
172178
</p>
173179
<ol>
174180
<?php foreach ($minorProblems as $problem): ?>
175-
<li><?php echo $problem->getHelpHtml() ?></li>
181+
<li><?php echo $problem->getTestMessage() ?>
182+
<p class="help"><em><?php echo $problem->getHelpHtml() ?></em></p>
183+
</li>
176184
<?php endforeach; ?>
177185
</ol>
178186
<?php endif; ?>

0 commit comments

Comments
 (0)