diff options
| author | 2024-06-06 02:44:38 +0800 | |
|---|---|---|
| committer | 2024-06-05 20:44:38 +0200 | |
| commit | 2ed58f814eab9c3bbdada6b8e2ebfccfc9395894 (patch) | |
| tree | e949b1cce6842490eca9c5490ead7903ca7bfb33 /app/Models/View.php | |
| parent | e17c2c447906deb471e25cdc889b9f74e1d715d2 (diff) | |
add image and description to user query share (#6541)
* add description to user queries and rss feed
* add image url to user queries and rss feed
* Fix i18n
* remove itunes image tag and xml definition
---------
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/Models/View.php')
| -rw-r--r-- | app/Models/View.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Models/View.php b/app/Models/View.php index 2595cd1fa..4823283d3 100644 --- a/app/Models/View.php +++ b/app/Models/View.php @@ -106,6 +106,8 @@ class FreshRSS_View extends Minz_View { public string $rss_url = ''; public string $rss_base = ''; public bool $internal_rendering = false; + public string $description; + public string $image_url; // Content preview public string $fatalError; |
