diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/account.html.ep | 2 | ||||
-rw-r--r-- | templates/layouts/default.html.ep | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index bbd6850..4917961 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -1,5 +1,5 @@ <h1>Account</h1> -% my $acc = get_user_data(); +% my $acc = current_user(); <div class="row"> <div class="col s12"> <table class="striped"> diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 588a83c..8f5bdc2 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -34,7 +34,7 @@ <div class="container"> % if (is_user_authenticated()) { - % my $acc = get_user_data(); + % my $acc = current_user(); % if ($acc and $acc->{deletion_requested}) { %= include '_deletion_note', timestamp => $acc->{deletion_requested} % } |