X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmes_infos.php?a=blobdiff_plain;f=includes%2FOutputPage.php;h=61a1ef2d870fff4f843a8dd14b70ed612412429d;hb=e952baca2029e74041c832eac24b90d993ecb0dd;hp=02e13e74fe665a7d6e00b05967096174bc7abaae;hpb=51f7797bc7827997ddd7d99cc3c61460b4efb7c5;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 02e13e74fe..61a1ef2d87 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -4134,12 +4134,12 @@ class OutputPage extends ContextSource { * * For example: * - * $wgOut->wrapWikiMsg( "
\n$1\n
", 'some-error' ); + * $wgOut->wrapWikiMsg( "
\n$1\n
", 'some-error' ); * * Is equivalent to: * - * $wgOut->addWikiTextAsInterface( "
\n" - * . wfMessage( 'some-error' )->plain() . "\n
" ); + * $wgOut->addWikiTextAsInterface( "
\n" + * . wfMessage( 'some-error' )->plain() . "\n
" ); * * The newline after the opening div is needed in some wikitext. See T21226. *