1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

Revert "Configure external links before dispatching event"

This reverts commit fd97e787dd.

Fixes #1650
This commit is contained in:
Toby Zerner
2018-11-22 07:20:19 +10:30
parent 28af13a081
commit eea80766a2

View File

@@ -122,10 +122,10 @@ class Formatter
$configurator->Autolink;
$configurator->tags->onDuplicate('replace');
$this->configureExternalLinks($configurator);
$this->events->dispatch(new Configuring($configurator));
$this->configureExternalLinks($configurator);
return $configurator;
}