From 1771d6c1f555ac32aa2d5b8291e82d7bf234f690 Mon Sep 17 00:00:00 2001 From: Dmitry Khomutov Date: Thu, 5 Jan 2017 17:36:13 +0700 Subject: [PATCH] Small fixes --- README.md | 4 ++-- src/PHPCensor/Controller/SessionController.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c08d65a7..840c5ffb 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ More [screenshots](docs/en/screenshots.md). Configuring ----------- -Similar to Travis CI, to support **PHP Censor** in your project, you simply need to add a `.php-censor.yml` +Similar to [TravisCI](https://travis-ci.org), to support PHP Censor in your project, you simply need to add a `.php-censor.yml` (`phpci.yml`/`.phpci.yml` for backward compatibility with PHPCI) file to the root of your repository. The file should look something like this: @@ -124,4 +124,4 @@ Documentation License ------- -*PHP Censor* is open source software licensed under the [BSD-2-Clause license](LICENSE.md). +PHP Censor is open source software licensed under the [BSD-2-Clause license](LICENSE.md). diff --git a/src/PHPCensor/Controller/SessionController.php b/src/PHPCensor/Controller/SessionController.php index b63d8c84..5d9f4661 100644 --- a/src/PHPCensor/Controller/SessionController.php +++ b/src/PHPCensor/Controller/SessionController.php @@ -70,7 +70,7 @@ class SessionController extends Controller $form->setAction(APP_URL.'session/login'); $email = new b8\Form\Element\Text('email'); - $email->setLabel(Lang::get('email_address')); + $email->setLabel(Lang::get('login')); $email->setRequired(true); $email->setContainerClass('form-group'); $email->setClass('form-control');