Merge pull request #8139 from MrPetovan/bug/notices
Update deprecated code
This commit is contained in:
commit
7ac68376d9
2 changed files with 4 additions and 4 deletions
|
@ -110,7 +110,7 @@ class ASNValue
|
||||||
function SetIntBuffer($Value)
|
function SetIntBuffer($Value)
|
||||||
{
|
{
|
||||||
if (strlen($Value) > 1) {
|
if (strlen($Value) > 1) {
|
||||||
$firstByte = ord($Value{0});
|
$firstByte = ord($Value[0]);
|
||||||
if ($firstByte & 0x80) { //first bit set
|
if ($firstByte & 0x80) { //first bit set
|
||||||
$Value = chr(0x00) . $Value;
|
$Value = chr(0x00) . $Value;
|
||||||
}
|
}
|
||||||
|
@ -122,7 +122,7 @@ class ASNValue
|
||||||
function GetIntBuffer()
|
function GetIntBuffer()
|
||||||
{
|
{
|
||||||
$result = $this->Value;
|
$result = $this->Value;
|
||||||
if (ord($result{0}) == 0x00) {
|
if (ord($result[0]) == 0x00) {
|
||||||
$result = substr($result, 1);
|
$result = substr($result, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -510,7 +510,7 @@ class HTML
|
||||||
|
|
||||||
$newlines[] = $line;
|
$newlines[] = $line;
|
||||||
|
|
||||||
return implode($newlines, "\n");
|
return implode("\n", $newlines);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static function quoteLevel($message, $wraplength = 75)
|
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)
|
private static function collectURLs($message)
|
||||||
|
|
Loading…
Reference in a new issue