diff options
Diffstat (limited to 'app/Controller/App.php')
-rw-r--r-- | app/Controller/App.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Controller/App.php b/app/Controller/App.php index 3f3f0176..01a74c7a 100644 --- a/app/Controller/App.php +++ b/app/Controller/App.php @@ -236,8 +236,7 @@ class App extends Base // Search by task id or by title if (ctype_digit($search)) { $filter->filterById($search); - } - else { + } else { $filter->filterByTitle($search); } |