diff options
-rw-r--r-- | examples/detect.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/detect.php b/examples/detect.php index 83d7eec..8b86e75 100644 --- a/examples/detect.php +++ b/examples/detect.php @@ -314,7 +314,7 @@ function detect_stores($r, &$out) } else { $text = 'Support was found for '; if (count($found) == 1) { - $text .= $found[0]; + $text .= $found[0] . '.'; } else { $last = array_pop($found); $text .= implode(', ', $found) . ' and ' . $last . '.'; |