From: Antoine Musso Date: Wed, 5 Jul 2006 18:25:39 +0000 (+0000) Subject: comments end at column 80 X-Git-Tag: 1.31.0-rc.0~56394 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=b875dcf1d35cc617f6875c4a02e161516e5c23e4;p=lhc%2Fweb%2Fwiklou.git comments end at column 80 --- 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]; }