Comment:
BlogPage: fix bug reported by ProgramCeltic on the extension's talk page -- Parser's transformMsg() takes only two arguments (text and ParserOptions), whereas preprocess() needs three mandatory params, of which the second is a Title.
Index: trunk/extensions/BlogPage/BlogHooks.php
— — @@ -129,11 +129,12 @@
130 130 // there's no point in doing that because we have to call
131 131 // clearCache() in any case
132 132 if ( !$wgUser->isAnon() && $stats->user_id ) {
133 (削除) - $ctg = $userBlogCat . ' '. $stats->user_name; (削除ここまで)
133 (追記) + $ctg = $userBlogCat . ' ' . $stats->user_name; (追記ここまで)
134 134 $parser = new Parser();
135 135 $ctgTitle = Title::newFromText(
136 136 $parser->preprocess(
137 137 trim( $ctg ),
138 (追記) + $wgOut->getTitle(), (追記ここまで)
138 139 $wgOut->parserOptions()
139 140 )
140 141 );