diff options
| author | 2024-09-12 11:04:49 +0200 | |
|---|---|---|
| committer | 2024-09-12 11:04:49 +0200 | |
| commit | fd1b5e9343b6fe92b4e5dfbbc2f01ddfcd010af9 (patch) | |
| tree | 5cc4e7399212d2fdce401465e3590f2275b16c26 /app/Models/UserQuery.php | |
| parent | d1f1e42c2b180f34276d7ddd1a2bfeaf4e59ed05 (diff) | |
Fix inversed encoding logic in paramArray (#6800)
* Fix inversed encoding logic in paramArray
https://github.com/FreshRSS/FreshRSS/pull/6797#discussion_r1754661634
Also fix the possibility to use `<'&">` in shortcuts, and some minor encoding bugs in user queries
* Forgot paramArrayString
Diffstat (limited to 'app/Models/UserQuery.php')
| -rw-r--r-- | app/Models/UserQuery.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Models/UserQuery.php b/app/Models/UserQuery.php index dcd17393e..d701b6b44 100644 --- a/app/Models/UserQuery.php +++ b/app/Models/UserQuery.php @@ -13,6 +13,7 @@ class FreshRSS_UserQuery { private string $get = ''; private string $get_name = ''; private string $get_type = ''; + /** XML-encoded name */ private string $name = ''; private string $order = ''; private FreshRSS_BooleanSearch $search; @@ -25,6 +26,7 @@ class FreshRSS_UserQuery { private array $categories; /** @var array<int,FreshRSS_Tag> $labels */ private array $labels; + /** XML-encoded description */ private string $description = ''; private string $imageUrl = ''; |
