diff options
| author | 2025-10-14 11:01:23 +0200 | |
|---|---|---|
| committer | 2025-10-14 11:01:23 +0200 | |
| commit | 20ecbeb09cdf05ca3ffd44980e9070b34c2b71ec (patch) | |
| tree | f5cc8b852b6a10f24707349677b3d11eebde0c45 /lib | |
| parent | 201c113041c97d6ba6d02fd851be02ac84a11780 (diff) | |
Fix drag&drop of user query losing information (#8113)
* Fix drag&drop of user query losing information
Information about RSS sharing was lost after a drag&drop
* Fix related type cast
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/lib_rss.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index 6779a4560..266e95b65 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -1057,8 +1057,10 @@ function recursive_unlink(string $dir): bool { /** * Remove queries where $get is appearing. * @param string $get the get attribute which should be removed. - * @param array<int,array{get?:string,name?:string,order?:string,search?:string,state?:int,url?:string}> $queries an array of queries. - * @return array<int,array{get?:string,name?:string,order?:string,search?:string,state?:int,url?:string}> without queries where $get is appearing. + * @param array<int,array{get?:string,name?:string,order?:string,search?:string,state?:int,url?:string,token?:string, + * shareRss?:bool,shareOpml?:bool,description?:string,imageUrl?:string}> $queries an array of queries. + * @return array<int,array{get?:string,name?:string,order?:string,search?:string,state?:int,url?:string,token?:string, + * shareRss?:bool,shareOpml?:bool,description?:string,imageUrl?:string}> without queries where $get is appearing. */ function remove_query_by_get(string $get, array $queries): array { $final_queries = []; |
