From: Chad Horohoe Date: Thu, 26 Jan 2012 13:45:50 +0000 (+0000) Subject: Fix r110054, \ -> @ X-Git-Tag: 1.31.0-rc.0~25080 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=048b9172f01de97769ea827534100159e40a7683;p=lhc%2Fweb%2Fwiklou.git Fix r110054, \ -> @ --- diff --git a/includes/Message.php b/includes/Message.php index 4916a58985..c6e71ff7bc 100644 --- a/includes/Message.php +++ b/includes/Message.php @@ -4,7 +4,8 @@ * processing them into variety of formats that are needed in MediaWiki. * * It is intented to replace the old wfMsg* functions that over time grew - * unusable. \see https://www.mediawiki.org/wiki/New_messages_API for + * unusable. + * @see https://www.mediawiki.org/wiki/New_messages_API for * equivalence between old and new functions. * * Below, you will find several examples of wfMessage() usage. @@ -43,8 +44,8 @@ * wfMessage( 'email-header' )->inLanguage( $user->getOption( 'language' ) )->plain() * @endcode * - * \note You cannot parse the text except in the content or interface - * \note languages + * @note You cannot parse the text except in the content or interface + * @note languages * * Comparison with old wfMsg* functions: * @@ -73,9 +74,9 @@ * @todo * - test, can we have tests? * - * \see https://www.mediawiki.org/wiki/WfMessage() - * \see https://www.mediawiki.org/wiki/New_messages_API - * \see https://www.mediawiki.org/wiki/Localisation + * @see https://www.mediawiki.org/wiki/WfMessage() + * @see https://www.mediawiki.org/wiki/New_messages_API + * @see https://www.mediawiki.org/wiki/Localisation * * @since 1.17 * @author Niklas Laxström