summaryrefslogtreecommitdiff
path: root/src/web/_model/apps/auth.php
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-04-05 15:00:27 -0400
committerFreya Murphy <freya@freyacat.org>2024-04-05 15:00:27 -0400
commit4c8d58b646ac62e67fc34c12f8cad51e7512bee3 (patch)
tree432351cce0acccd9a986872f7ea020dae14b0c71 /src/web/_model/apps/auth.php
parentuser menu (diff)
downloadxssbook2-4c8d58b646ac62e67fc34c12f8cad51e7512bee3.tar.gz
xssbook2-4c8d58b646ac62e67fc34c12f8cad51e7512bee3.tar.bz2
xssbook2-4c8d58b646ac62e67fc34c12f8cad51e7512bee3.zip
add en_CAT makefile and use ucfirst/ucwords
Diffstat (limited to 'src/web/_model/apps/auth.php')
-rw-r--r--src/web/_model/apps/auth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_model/apps/auth.php b/src/web/_model/apps/auth.php
index 8a359d5..c528601 100644
--- a/src/web/_model/apps/auth.php
+++ b/src/web/_model/apps/auth.php
@@ -7,7 +7,7 @@ class Auth_model extends Model {
public function get_data(): ?array {
$data = parent::get_data();
- $data['title'] = lang('login');
+ $data['title'] = ucfirst(lang('login'));
return $data;
}
}