summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2023-05-07 21:35:08 +0200
committerGravatar GitHub <noreply@github.com> 2023-05-07 21:35:08 +0200
commit54c8de86c73ce831df7912428b4f9fd849d67aca (patch)
treeb6c0cf65ae8370ad09f2a1a94384afd60444bb62 /app
parent9172b65cdbeb3cd19620e38df54669c5d8aa9983 (diff)
docs: language table added (#5375)
* docs: language table added * Update 05_Configuration.md * Update 05_Configuration.md * french docs * Unicode quote and a few fixes (Same search&replace aslo applied to a few other files) --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app')
-rw-r--r--app/Models/BooleanSearch.php4
-rw-r--r--app/Services/ImportService.php5
2 files changed, 4 insertions, 5 deletions
diff --git a/app/Models/BooleanSearch.php b/app/Models/BooleanSearch.php
index f4979b22b..ea03165d5 100644
--- a/app/Models/BooleanSearch.php
+++ b/app/Models/BooleanSearch.php
@@ -33,8 +33,8 @@ class FreshRSS_BooleanSearch {
$input = $this->parseUserQueryIds($input);
}
- // Either parse everything as a series of BooleanSearch's combined by implicit AND
- // or parse everything as a series of Search's combined by explicit OR
+ // Either parse everything as a series of BooleanSearch’s combined by implicit AND
+ // or parse everything as a series of Search’s combined by explicit OR
$this->parseParentheses($input, $level) || $this->parseOrSegments($input);
}
diff --git a/app/Services/ImportService.php b/app/Services/ImportService.php
index e5d558233..8565be41c 100644
--- a/app/Services/ImportService.php
+++ b/app/Services/ImportService.php
@@ -358,7 +358,7 @@ class FreshRSS_Import_Service {
}
if (isset($outline['@outlines'])) {
- // The outline has children, it's probably a category
+ // The outline has children, it’s probably a category
if (!empty($outline['text'])) {
$category_name = $outline['text'];
} elseif (!empty($outline['title'])) {
@@ -376,8 +376,7 @@ class FreshRSS_Import_Service {
$categories_elements[$category_name] = $outline;
}
- // The xmlUrl means it's a feed URL: add the outline to the array if it
- // exists.
+ // The xmlUrl means it’s a feed URL: add the outline to the array if it exists.
if (isset($outline['xmlUrl'])) {
if (!isset($categories_to_feeds[$parent_category_name])) {
$categories_to_feeds[$parent_category_name] = [];