Skip to content

Commit 5e46565

Browse files
committed
Merge branch '1.3.x'
Conflicts: Changelog.md README.markdown Resources/config/validation.xml
2 parents 85ef11b + 0fc0444 commit 5e46565

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ Changelog
99
* [BC break] Changed Datetime properties of default User entity that were nullable to default to null when no value supplied
1010
* [BC break] Updated schema.xml for Propel BaseUser class to allow nullable and typehint accordingly
1111

12+
### 1.3.3 (2013-09-23)
13+
14+
* Added a max length validation on the password
15+
16+
### 1.3.2 (2013-05-25)
17+
18+
* Changed the flash message handling to use the non-deprecated api
19+
* Updated the composer constraint to allow Symfony 2.3
20+
1221
### 1.3.1 (2012-12-22)
1322

1423
* Replaced the deprecated validation constraints by the new ones

Resources/config/validation.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
</constraint>
6565
<constraint name="Length">
6666
<option name="min">2</option>
67+
<option name="max">4096</option>
6768
<option name="minMessage">fos_user.password.short</option>
6869
<option name="groups">
6970
<value>Registration</value>
@@ -153,6 +154,7 @@
153154
</constraint>
154155
<constraint name="Length">
155156
<option name="min">2</option>
157+
<option name="max">4096</option>
156158
<option name="minMessage">fos_user.password.short</option>
157159
<option name="groups">
158160
<value>Registration</value>

Resources/doc/overriding_templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ application.
8484
The easiest way to override a bundle's template is to simply place a new one in
8585
your `app/Resources` folder. To override the layout template located at
8686
`Resources/views/layout.html.twig` in the `FOSUserBundle` directory, you would place
87-
you new layout template at `app/Resources/FOSUserBundle/views/layout.html.twig`.
87+
your new layout template at `app/Resources/FOSUserBundle/views/layout.html.twig`.
8888

8989
As you can see the pattern for overriding templates in this way is to
9090
create a folder with the name of the bundle class in the `app/Resources` directory.

Resources/translations/FOSUserBundle.ja.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ resetting:
6060
password_already_requested: このユーザーのパスワードは 24 時間以内ですでにリクエストされています。
6161
check_email: %email% 宛にメールを送信しました。メールに記載された確認 URL にアクセスして、アカウントを有効化してください。
6262
request:
63-
invalid_username: "\"%username%\" というユーザー名またはメールアドレスは存在しません。"
63+
invalid_username: '"%username%" というユーザー名またはメールアドレスは存在しません。'
6464
username: "ユーザー名かメールアドレス:"
6565
submit: パスワードのリセット
6666
reset:

0 commit comments

Comments
 (0)