Use !== over != in MDErrorReporter
This commit is contained in:
parent
96f5dd8108
commit
2fd7511218
|
@ -156,7 +156,7 @@ final class MDErrorReporter {
|
||||||
$msg .= $this->_formulateDebugMailSection("Context information", $contextInfo);
|
$msg .= $this->_formulateDebugMailSection("Context information", $contextInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($description != "") {
|
if ($description !== "") {
|
||||||
$msg .= "## Description" . PHP_EOL;
|
$msg .= "## Description" . PHP_EOL;
|
||||||
$msg .= "--------------" . PHP_EOL . PHP_EOL;
|
$msg .= "--------------" . PHP_EOL . PHP_EOL;
|
||||||
$msg .= "$description" . PHP_EOL;
|
$msg .= "$description" . PHP_EOL;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user