diff --git a/app/templates/post/_post_full.html b/app/templates/post/_post_full.html
index ac1079b3..cd06b01d 100644
--- a/app/templates/post/_post_full.html
+++ b/app/templates/post/_post_full.html
@@ -17,7 +17,7 @@
{% if post.reports > 0 and current_user.is_authenticated and post.community.is_moderator(current_user) -%}
{% endif -%}submitted by
- {{ render_username(post.author, htmx_redirect_back_to=request.url) }}
+ {{ render_username(post.author, htmx_redirect_back_to=request.path) }}
{% if post.edited_at -%} edited {% endif -%}
{% if post.type == POST_TYPE_IMAGE -%}
diff --git a/app/templates/post/_post_reply_teaser.html b/app/templates/post/_post_reply_teaser.html
index a58bb184..9fa1df2c 100644
--- a/app/templates/post/_post_reply_teaser.html
+++ b/app/templates/post/_post_reply_teaser.html
@@ -28,7 +28,7 @@
diff --git a/app/user/routes.py b/app/user/routes.py
index fe327e22..50b7e08d 100644
--- a/app/user/routes.py
+++ b/app/user/routes.py
@@ -1346,7 +1346,9 @@ def user_read_posts_delete():
@login_required
def edit_user_note(actor):
actor = actor.strip()
- return_to = request.args.get('return_to')
+ return_to = request.args.get('return_to', '').strip()
+ if return_to.startswith('http'):
+ abort(401)
if '@' in actor:
user: User = User.query.filter_by(ap_id=actor, deleted=False).first()
else:
Deleted by moderator
+{{ _('Deleted by moderator') }}
{% else -%} -Deleted by author
+{{ _('Deleted by author') }}
{% endif -%} {% else -%} {{ post_reply.body_html | community_links | person_links | safe }} diff --git a/app/templates/post/post_teaser/_title.html b/app/templates/post/post_teaser/_title.html index bfd84893..4b5a7bc9 100644 --- a/app/templates/post/post_teaser/_title.html +++ b/app/templates/post/post_teaser/_title.html @@ -28,4 +28,4 @@ {% if show_post_community -%} {% if post.community.icon_id and not low_bandwidth %}{% endif -%} c/{{ post.community.name }}{% endif -%} - by {{ render_username(post.author, htmx_redirect_back_to=request.url + '#post_' + str(post.id)) }} + by {{ render_username(post.author, htmx_redirect_back_to=request.path + '#post_' + str(post.id)) }} diff --git a/app/templates/user/user_preview.html b/app/templates/user/user_preview.html index 69c01313..91614753 100644 --- a/app/templates/user/user_preview.html +++ b/app/templates/user/user_preview.html @@ -55,7 +55,7 @@