From eb95f300b872cc65be212dd438d797f16791e3a5 Mon Sep 17 00:00:00 2001 From: Tyler Anthony Romeo Date: Tue, 15 Jan 2013 15:35:41 -0500 Subject: [PATCH] Fix documentation in Linker::formatTemplates. Follow up to 265404d93cd99bf067064f947f5fc361f54466d7. Make it clear that when a string is passed to the function, it has to be already escaped. Also added Message as a possible parameter type. Change-Id: I4fb309d0dfcdf61b92c42db4b7ca2ea651d5f071 --- includes/Linker.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/Linker.php b/includes/Linker.php index 2f6ee22f77..ce8227400a 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1927,13 +1927,13 @@ class Linker { * Make an HTML list of templates, and then add a "More..." link at * the bottom. If $more is null, do not add a "More..." link. If $more * is a Title, make a link to that title and use it. If $more is a string, - * directly paste it in as the link. + * directly paste it in as the link (escaping needs to be done manually). + * Finally, if $more is a Message, call toString(). * - * @param $templates Array of templates from Article::getUsedTemplate - * or similar + * @param array $templates Array of templates from Article::getUsedTemplate or similar * @param bool $preview Whether this is for a preview * @param bool $section Whether this is for a section edit - * @param Title|string|null $more A link for "More..." of the templates + * @param Title|Message|string|null $more An escaped link for "More..." of the templates * @return String: HTML output */ public static function formatTemplates( $templates, $preview = false, $section = false, $more = null ) { -- 2.20.1