diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-12-08 11:06:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-12-08 11:06:17 +0100 |
commit | 561ff4574bb6078ce4c9f72647a9c3d1a92cac6e (patch) | |
tree | 1402b28d03434d2c59207f31e2d192b044797bac /templates/account.html.ep | |
parent | 402a5597f5d095b059e8ee1a4a8b653c3187ff93 (diff) |
Allow status visibility to be limited to travelynx users
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r-- | templates/account.html.ep | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 169a760..b3ec52a 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -66,10 +66,13 @@ % if ($acc->{is_public} == 0) { <span style="color: #999999;">Keine</span> % } - % if ($acc->{is_public} & 0x02) { + % if ($acc->{is_public} & 0x01) { + Aktueller Status (nur für angemeldete Accounts) + % } + % elsif ($acc->{is_public} & 0x02) { Aktueller Status % } - % if (($acc->{is_public} & 0x06) == 0x06) { + % if ($acc->{is_public} & 0x04) { mit Kommentar % } </td> |