We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ff61e commit 4afcf74Copy full SHA for 4afcf74
components/com_tags/src/Service/Router.php
@@ -286,7 +286,15 @@ public function parse(&$segments)
286
287
while (\count($segments)) {
288
$id = array_shift($segments);
289
- $ids[] = $this->fixSegment($id);
+ $slug = $this->fixSegment($id);
290
+
291
+ // We did not find the segment as a tag in the DB
292
+ if ($slug === $id) {
293
+ array_unshift($segments, $id);
294
+ break;
295
+ }
296
297
+ $ids[] = $slug;
298
}
299
300
if (\count($ids)) {
0 commit comments