From 243530b75080c7cf0c2a6523fa97af18a3a61e15 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 30 Mar 2017 18:43:12 +0200 Subject: [PATCH] Forgot a return value. --- app/Support/Search/Search.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Support/Search/Search.php b/app/Support/Search/Search.php index 8c6d9c82ae..972b8a76dc 100644 --- a/app/Support/Search/Search.php +++ b/app/Support/Search/Search.php @@ -64,6 +64,7 @@ class Search implements SearchInterface if (strlen($string) === 0) { return is_string($this->originalQuery) ? $this->originalQuery : ''; } + return $string; } /**