comments end at column 80
authorAntoine Musso <hashar@users.mediawiki.org>
Wed, 5 Jul 2006 18:25:39 +0000 (18:25 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Wed, 5 Jul 2006 18:25:39 +0000 (18:25 +0000)
includes/MagicWord.php

index ef20603..c80d258 100644 (file)
@@ -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];
                }