1
0
mirror of https://github.com/flarum/core.git synced 2025-07-16 22:31:18 +02:00

Revert "Configure external links before dispatching event"

This reverts commit 4c55d278b6.

Fixes #1650
This commit is contained in:
Toby Zerner
2018-11-22 07:20:19 +10:30
parent c11e4720d9
commit 53d1b87daf

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;
}