summaryrefslogtreecommitdiff
path: root/config/services/web
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-05-07 16:29:29 +0200
committerQuentin Aristote <quentin@aristote.fr>2022-05-07 16:40:32 +0200
commit4a0782a58406808c0e7971de60af0964f57bc898 (patch)
tree223fcfb2775e4761c89435e6254ebed712426d3e /config/services/web
parentffac7df79fffa4281d370b292c7f1bc9d7673d6d (diff)
rss-bridge: change parisjazzclub bridge content formatting
Diffstat (limited to 'config/services/web')
-rw-r--r--config/services/web/rss/ParisJazzClubBridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/services/web/rss/ParisJazzClubBridge.php b/config/services/web/rss/ParisJazzClubBridge.php
index d59c6cd..1b97011 100644
--- a/config/services/web/rss/ParisJazzClubBridge.php
+++ b/config/services/web/rss/ParisJazzClubBridge.php
@@ -27,7 +27,7 @@ class ParisJazzClubBridge extends XPathAbstract {
}
protected function formatItemContent($value) {
- $text = preg_replace("/\s\s+/", "\n", $value);
+ $text = preg_replace("/\s{2}\s+/", "\n", $value);
$lines = array_map("trim", explode("\n", $text));
$time = $lines[0];
$title = $lines[1];