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

Commit 47ecaa5

Browse files
committed
updated VENDORS for 2.8.8
1 parent 41d19f3 commit 47ecaa5

File tree

3 files changed

+32
-24
lines changed

3 files changed

+32
-24
lines changed

app/check.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
if ($iniPath) {
1313
echo_style('green', ' '.$iniPath);
1414
} else {
15-
echo_style('warning', ' WARNING: No configuration file (php.ini) used by PHP!');
15+
echo_style('yellow', ' WARNING: No configuration file (php.ini) used by PHP!');
1616
}
1717

1818
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)