diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-07-18 18:05:47 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-07-18 18:05:47 +0200 |
commit | 2fecf8b6626888a6a41f6463b2ce792866a2e355 (patch) | |
tree | 87194ba39f05a2c64256bf3b8b8ff76e1484dd0a /templates | |
parent | 44596dfe21c7e6318b2aad9db2d2ab107283caf4 (diff) |
fix follow-requests-received link1.33.5
Diffstat (limited to 'templates')
-rw-r--r-- | templates/account.html.ep | 4 | ||||
-rw-r--r-- | templates/profile.html.ep | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 1da49be..c27e0f5 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -93,9 +93,9 @@ % elsif ($acc->{accept_follow_requests}) { <span>Accounts können dir auf Anfrage folgen % if ($num_rx_follow_requests == 1) { - – <a href="/account/social/follow-requests"><strong>eine</strong> offene Anfrage</a> + – <a href="/account/social/follow-requests-received"><strong>eine</strong> offene Anfrage</a> % } elsif ($num_rx_follow_requests) { - – <a href="/account/social/follow-requests"><strong><%= $num_rx_follow_requests %></strong> offene Anfragen</a> + – <a href="/account/social/follow-requests-received"><strong><%= $num_rx_follow_requests %></strong> offene Anfragen</a> % } </span> % } diff --git a/templates/profile.html.ep b/templates/profile.html.ep index b65f528..6f78ea0 100644 --- a/templates/profile.html.ep +++ b/templates/profile.html.ep @@ -20,7 +20,7 @@ % } % elsif ($follow_reqs_me) { <span class="right"> - <a href="/account/social/follow-requests"><i class="material-icons right">notifications</i></a> + <a href="/account/social/follow-requests-received"><i class="material-icons right">notifications</i></a> </span> % } % elsif ($is_self) { |