Index: includes/parser/Parser.php =================================================================== --- includes/parser/Parser.php (revision 45863) +++ includes/parser/Parser.php (working copy) @@ -3054,6 +3054,8 @@ if ( $isLocalObj ) { $ret = array( 'object' => $text ); } else { + wfRunHooks( 'ParserBeforeStrip', array( &$this, &$text, &$this->mStripState ) ); + wfRunHooks( 'ParserAfterStrip', array( &$this, &$text, &$this->mStripState ) ); $ret = array( 'text' => $text ); }