Merge pull request #8139 from MrPetovan/bug/notices

Update deprecated code
This commit is contained in:
Philipp 2020-01-19 16:51:07 +01:00 committed by GitHub
commit 7ac68376d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -110,7 +110,7 @@ class ASNValue
function SetIntBuffer($Value)
{
if (strlen($Value) > 1) {
$firstByte = ord($Value{0});
$firstByte = ord($Value[0]);
if ($firstByte & 0x80) { //first bit set
$Value = chr(0x00) . $Value;
}
@ -122,7 +122,7 @@ class ASNValue
function GetIntBuffer()
{
$result = $this->Value;
if (ord($result{0}) == 0x00) {
if (ord($result[0]) == 0x00) {
$result = substr($result, 1);
}

View File

@ -510,7 +510,7 @@ class HTML
$newlines[] = $line;
return implode($newlines, "\n");
return implode("\n", $newlines);
}
private static function quoteLevel($message, $wraplength = 75)
@ -546,7 +546,7 @@ class HTML
}
}
return implode($newlines, "\n");
return implode("\n", $newlines);
}
private static function collectURLs($message)