Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion import/xsl/sitemap.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<add>
<xsl:for-each select="//sitemap:url">
<!-- We can't index without a loc element containing a URI! -->
<xsl:if test="sitemap:loc">
<xsl:if test="string-length(sitemap:loc) > 0">
<doc>
<!-- Pass the URI to PHP, which will use full-text
extraction and generate pre-built XML output;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ protected function harvestSitemap(
}
} catch (\Exception $e) {
if ($verbose) {
$output->writeln($e::class . ': ' . $e->getMessage());
$output->writeln((string)$e);
}
$retVal = false;
}
Expand Down
Loading