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
This commit is contained in:
Alexandre Alapetite
2024-09-12 11:04:49 +02:00
committed by GitHub
parent d1f1e42c2b
commit fd1b5e9343
6 changed files with 33 additions and 10 deletions

View File

@@ -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 = '';