aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/authController.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-07-22 23:06:46 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-07-22 23:06:46 +0200
commitf0a1b26584787e173c8c9cd1a5fea27bb3044f1c (patch)
tree94d68d9b82430560089f6c43019d9218199743fd /app/Controllers/authController.php
parent8751c344f384e19dd2fd2f0b5607ecc2aac58541 (diff)
Add title to the account creation page
See https://github.com/FreshRSS/FreshRSS/issues/679
Diffstat (limited to 'app/Controllers/authController.php')
-rw-r--r--app/Controllers/authController.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Controllers/authController.php b/app/Controllers/authController.php
index 223282afb..aff184263 100644
--- a/app/Controllers/authController.php
+++ b/app/Controllers/authController.php
@@ -354,5 +354,7 @@ class FreshRSS_auth_Controller extends Minz_ActionController {
if (max_registrations_reached()) {
Minz_Error::error(403);
}
+
+ Minz_View::prependTitle(_t('gen.auth.registration.title') . ' ยท ');
}
}