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

Commit c62b563

Browse files
committed
updated VENDORS for 2.8.16
1 parent 2796ae4 commit c62b563

File tree

3 files changed

+71
-60
lines changed

3 files changed

+71
-60
lines changed

app/SymfonyRequirements.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,11 @@ protected function getRealpathCacheSize()
780780
{
781781
$size = ini_get('realpath_cache_size');
782782
$size = trim($size);
783-
$unit = strtolower(substr($size, -1, 1));
783+
$unit = '';
784+
if (!ctype_digit($size)) {
785+
$unit = strtolower(substr($size, -1, 1));
786+
$size = (int) substr($size, 0, -1);
787+
}
784788
switch ($unit) {
785789
case 'g':
786790
return $size * 1024 * 1024 * 1024;

composer.lock

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

web/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
}
271271
.sf-reset ul a,
272272
.sf-reset ul a:hover {
273-
background: url(../images/blue-arrow.png) no-repeat right 6px;
273+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAYAAAAx8TU7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFdJREFUeNpiYACBjjOhDEiACSggCKTLgXQ5TJARqhIkcReIKxgqTGYxwvV0nDEGkmeAOIwJySiQ4HsgvseIpGo3ELsCtZ9lRDIvDCiwhwHJPEFkJwEEGACq6hdnax8y1AAAAABJRU5ErkJggg==) no-repeat right 7px;
274274
padding-right: 10px;
275275
}
276276
.sf-reset ul, ol {

0 commit comments

Comments
 (0)