소스 검색

Search allow double quotes

`author:"some name"`
Alexandre Alapetite 9 년 전
부모
커밋
3011bbc5e1
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      app/Models/Search.php

+ 2 - 0
app/Models/Search.php

@@ -35,6 +35,8 @@ class FreshRSS_Search {
 		}
 		$this->raw_input = $input;
 
+		$input = preg_replace('/:"(.*?)"/', ':"\1"', $input);
+
 		$input = $this->parseNotIntitleSearch($input);
 		$input = $this->parseNotAuthorSearch($input);
 		$input = $this->parseNotInurlSearch($input);