8
0

Fixed compilation of created pages

Dieser Commit ist enthalten in:
Stéphane Goetz 2015-08-06 22:05:17 +02:00
Ursprung 2f5abb8488
Commit 01df221476
2 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen

BIN
daux.phar

Binäre Datei nicht angezeigt.

Datei anzeigen

@ -40,7 +40,8 @@ class ContentTypeHandler
*/
public function getType(Content $node)
{
$extension = pathinfo($node->getPath(), PATHINFO_EXTENSION);
$path = $node->getPath() ?: $node->getName();
$extension = pathinfo($path, PATHINFO_EXTENSION);
foreach ($this->types as $type) {
if (in_array($extension, $type->getExtensions())) {
@ -48,6 +49,6 @@ class ContentTypeHandler
}
}
throw new \RuntimeException("no contentType found for {$node->getPath()}");
throw new \RuntimeException("no contentType found for $path");
}
}