summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Date.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Date.php b/app/Date.php
index fb7f2a19f2..0034443d19 100644
--- a/app/Date.php
+++ b/app/Date.php
@@ -80,7 +80,7 @@ class Date {
$this->date1 = $this->parseDate($match[2]);
$this->qual2 = $match[3];
$this->date2 = $this->parseDate($match[4]);
- } elseif (preg_match('/^(FROM|BET|TO|AND|BEF|AFT|CAL|EST|INT|ABT) (.+)/', $date, $match)) {
+ } elseif (preg_match('/^(TO|BEF|AFT|CAL|EST|INT|ABT) (.+)/', $date, $match)) {
$this->qual1 = $match[1];
$this->date1 = $this->parseDate($match[2]);
} else {