diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-11 01:42:14 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-11 01:42:14 +0200 |
commit | 736e36d45c79164e9791d8639a0cfefd3ef629b3 (patch) | |
tree | 415b6552a6293c90c4f96ef4f36def60f1730428 /templates/account.html.ep | |
parent | 59c677ba12365f0ed2996005fcc6ce1281069be9 (diff) |
account: fix uninitialized value warning
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r-- | templates/account.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 05e0447..f41f07f 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -59,7 +59,7 @@ <th scope="row">Web Hook</th> <td> <a href="/account/hooks"><i class="material-icons">edit</i></a> - % if ($hook->{enabled} == 0) { + % if (not $hook->{enabled}) { <span style="color: #999999;">Nicht eingerichtet</span> % } % elsif ($hook->{latest_run}->epoch == 0) { |