From 9db001a6358fb9b8617f0302cb22b2b37b77ff31 Mon Sep 17 00:00:00 2001 From: Erik Thuning <boooink@gmail.com> Date: Mon, 11 Mar 2024 10:03:53 +0100 Subject: [PATCH] Fixed a typo --- include/UserPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/UserPage.php b/include/UserPage.php index f65c8e5..21e6b86 100644 --- a/include/UserPage.php +++ b/include/UserPage.php @@ -48,7 +48,7 @@ class UserPage extends Page { $table_active = $this->build_user_loan_table($active_loans); } $inactive_loans = $this->user->get_loans('inactive'); - $table_inactive = i18n('No past loans'); + $table_inactive = i18n('No past loans.'); if($inactive_loans) { $table_inactive = $this->build_user_loan_table($inactive_loans); }