diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index ef95032..db3c010 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -4,6 +4,7 @@ Apache Solr integration 7.x-1.x-xxxx, xxxx-xx-xx
 
 Apache Solr integration 7.x-1.0-xxxx, 2011-xx-xx
 ------------------------------
+#1313698 by Nick_vh, denikin: Fixed Support for search of date content in facets/fields
 #1316578 by Nick_vh | rooby: Added some documentation somewhere that says you need the facetapi module for facets.
 
 
diff --git a/Solr_Base_Query.php b/Solr_Base_Query.php
index 679e987..71fc377 100644
--- a/Solr_Base_Query.php
+++ b/Solr_Base_Query.php
@@ -317,10 +317,11 @@ class SolrBaseQuery extends SolrFilterSubQuery implements DrupalSolrQueryInterfa
       $exclude = !empty($matches[1]);
       $this->addFilter('', $matches[2], $exclude, $local);
     }
-    elseif (preg_match('/(-|)([^:]+):([\("].+[\)"])/', $string, $matches)) {
+    elseif (preg_match('/(-|)([^:]+):([\("\[].+[\)"\]])/', $string, $matches)) {
       // Something with a complicated right-hand-side.
       // Ex.: bundle:(article OR page)
       // Ex.: title:"double words"
+      // Ex.: field_date:[1970-12-31T23:59:59Z TO NOW]
       $exclude = !empty($matches[1]);
       $this->addFilter($matches[2], $matches[3], $exclude, $local);
     }
