From ee94aca3cd106dc9c87ca04963af4cb4ddf955e8 Mon Sep 17 00:00:00 2001 From: Shish Date: Thu, 2 Feb 2012 16:08:49 +0000 Subject: [PATCH] missed a bit --- core/extension.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/extension.class.php b/core/extension.class.php index 17fd2809..e5ce13d2 100644 --- a/core/extension.class.php +++ b/core/extension.class.php @@ -118,7 +118,7 @@ abstract class SimpleExtension implements Extension { * Several extensions have this in common, make a common API */ abstract class FormatterExtension extends SimpleExtension { - public function onTextFormatting(TextFormatting $event) { + public function onTextFormatting(TextFormattingEvent $event) { $event->formatted = $this->format($event->formatted); $event->stripped = $this->strip($event->stripped); }