diff --git a/core/FileIntegrity.php b/core/FileIntegrity.php index 4bc3bcf9008..a90abf7cc16 100644 --- a/core/FileIntegrity.php +++ b/core/FileIntegrity.php @@ -92,7 +92,7 @@ protected static function getMessagesDirectoriesFoundButNotExpected($messages) $directories = array(); foreach ($directoriesFoundButNotExpected as $directoryFoundNotExpected) { - $directories[] = htmlspecialchars(realpath(dirname($directoryFoundNotExpected)). DIRECTORY_SEPARATOR . basename($directoryFoundNotExpected)); + $directories[] = htmlspecialchars(realpath(dirname($directoryFoundNotExpected)) . DIRECTORY_SEPARATOR . basename($directoryFoundNotExpected)); } $deleteAllAtOnce = array(); @@ -138,8 +138,7 @@ protected static function getMessagesFilesFoundButNotExpected($messages) $files = array(); foreach ($filesFoundButNotExpected as $fileFoundNotExpected) { - $files[] = '"' . htmlspecialchars(realpath(dirname($fileFoundNotExpected)). DIRECTORY_SEPARATOR . basename($fileFoundNotExpected)) . '"'; - + $files[] = '"' . htmlspecialchars(realpath(dirname($fileFoundNotExpected)) . DIRECTORY_SEPARATOR . basename($fileFoundNotExpected)) . '"'; } $deleteAllAtOnce = array();