changeset 6489:dff042647892

Merge?
author Kim Alvefur <zash@zash.se>
date Mon, 23 Mar 2026 19:47:03 +0100
parents 8e73179c67f3 (diff) 68e8f14bef05 (current diff)
children 771944f2a7c7
files mod_http_upload_external/README.md
diffstat 3 files changed, 9 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mod_dwd/README.md	Sun Mar 22 12:41:46 2026 +0100
+++ b/mod_dwd/README.md	Mon Mar 23 19:47:03 2026 +0100
@@ -1,7 +1,14 @@
 ---
 summary: 'Dialback-without-Dialback'
+labels:
+  - Stage-Deprecated
 ...
 
+::: {.alert .alert-warning}
+**Warning:** Between 0.10.0 and 0.11.9 this feature was merged into [mod_dialback], however it was found to have a security issue and was removed in 0.11.9. Do not enable this feature beside experimenting.
+:::
+
+
 Introduction
 ============
 
--- a/mod_http_upload_external/README.md	Sun Mar 22 12:41:46 2026 +0100
+++ b/mod_http_upload_external/README.md	Mon Mar 23 19:47:03 2026 +0100
@@ -17,8 +17,8 @@
 ---------------
 
 * [PHP implementation](https://hg.prosody.im/prosody-modules/raw-file/tip/mod_http_upload_external/share.php)
+* [Rust implementation, xmpp-http-upload](https://codeberg.org/luxanna/xmpp-http-upload)
 * [Rust implementation, Rusty Filer](https://codeberg.org/thomas.leister/rusty-filer)
-* [Rust implementation, xmpp-http-upload](https://codeberg.org/luxanna/xmpp-http-upload)
 * [Go implementation, Prosody Filer](https://github.com/ThomasLeister/prosody-filer)
 * [Perl implementation for nginx](https://github.com/weiss/ngx_http_upload)
 * [Python3+Flask implementation \(archived\)](https://github.com/horazont/xmpp-http-upload)
--- a/mod_invites_register_web/mod_invites_register_web.lua	Sun Mar 22 12:41:46 2026 +0100
+++ b/mod_invites_register_web/mod_invites_register_web.lua	Mon Mar 23 19:47:03 2026 +0100
@@ -80,7 +80,7 @@
 		return {
 			status_code = 303;
 			headers = {
-				["Location"] = invites_page.module:http_url().."?"..event.request.url.query;
+				["Location"] = invites_page.module:http_url().."?"..(event.request.url.query or "");
 			};
 		};
 	end