From b875dcf1d35cc617f6875c4a02e161516e5c23e4 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Wed, 5 Jul 2006 18:25:39 +0000 Subject: [PATCH] comments end at column 80 --- includes/MagicWord.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/MagicWord.php b/includes/MagicWord.php index ef20603717..c80d258389 100644 --- a/includes/MagicWord.php +++ b/includes/MagicWord.php @@ -313,8 +313,9 @@ class MagicWord { } elseif ( count($matches) == 1 ) { return $matches[0]; } else { - # multiple matched parts (variable match); some will be empty because of synonyms - # the variable will be the second non-empty one so remove any blank elements and re-sort the indices + # multiple matched parts (variable match); some will be empty because of + # synonyms. The variable will be the second non-empty one so remove any + # blank elements and re-sort the indices. $matches = array_values(array_filter($matches)); return $matches[1]; } -- 2.20.1