Merge branch 'fix/module-info-error-#4092'
This commit is contained in:
commit
a921142bc9
|
@ -860,7 +860,7 @@ class Module
|
||||||
if (file_exists($this->metadataFile)) {
|
if (file_exists($this->metadataFile)) {
|
||||||
$key = null;
|
$key = null;
|
||||||
$file = new File($this->metadataFile, 'r');
|
$file = new File($this->metadataFile, 'r');
|
||||||
foreach ($file as $line) {
|
foreach ($file as $lineno => $line) {
|
||||||
$line = rtrim($line);
|
$line = rtrim($line);
|
||||||
|
|
||||||
if ($key === 'description') {
|
if ($key === 'description') {
|
||||||
|
@ -875,6 +875,19 @@ class Module
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (strpos($line, ':') === false) {
|
||||||
|
Logger::debug(
|
||||||
|
$this->translate(
|
||||||
|
"Can't process line %d in %s: Line does not specify a key:value pair"
|
||||||
|
. " nor is it part of the description (indented with a single space)"
|
||||||
|
),
|
||||||
|
$lineno,
|
||||||
|
$this->metadataFile
|
||||||
|
);
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
list($key, $val) = preg_split('/:\s+/', $line, 2);
|
list($key, $val) = preg_split('/:\s+/', $line, 2);
|
||||||
$key = lcfirst($key);
|
$key = lcfirst($key);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue