summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-03-02 18:34:01 +0100
committerDaniel Friesel <daniel.friesel@uos.de>2023-03-02 18:34:01 +0100
commit1c46f56b50b71aa0794b8a8939488b9403371f6b (patch)
tree009aa6392c5a3713f7af1fee3592d72ae2d1e37c
parent792ab9fe23a89682115ff02808e813dc92c597f8 (diff)
fix comment visibilitiy check
-rwxr-xr-xlib/Travelynx/Controller/Traveling.pm2
-rw-r--r--templates/_checked_in.html.ep2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm
index 316ee08..1058837 100755
--- a/lib/Travelynx/Controller/Traveling.pm
+++ b/lib/Travelynx/Controller/Traveling.pm
@@ -822,7 +822,7 @@ sub public_journey_details {
include_manual => 1,
);
if ( $journey->{user_data}{comment}
- and not $user->{public_level} & 0x04 )
+ and not $user->{comments_visible} )
{
delete $journey->{user_data}{comment};
}
diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep
index 1775986..8e1fd1d 100644
--- a/templates/_checked_in.html.ep
+++ b/templates/_checked_in.html.ep
@@ -276,7 +276,7 @@
% if ($journey->{real_arrival}->epoch and $journey_visibility eq 'private') {
% $arr_text = $journey->{real_arrival}->strftime(' – Ankunft gegen %H:%M Uhr');
% }
- % if ($user->{is_public} & 0x04 and $journey->{comment}) {
+ % if ($user->{is_public} & 0x80 and $journey->{comment}) {
data-text="<%= $journey->{comment} %> (@ <%= $journey->{train_type} %> <%= $journey->{train_no} %> → <%= $journey->{arr_name} %>) #travelynx"
% }
% else {