File tree 4 files changed +13
-2
lines changed 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,15 @@ Changelog
9
9
* [ BC break] Changed Datetime properties of default User entity that were nullable to default to null when no value supplied
10
10
* [ BC break] Updated schema.xml for Propel BaseUser class to allow nullable and typehint accordingly
11
11
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
+
12
21
### 1.3.1 (2012-12-22)
13
22
14
23
* Replaced the deprecated validation constraints by the new ones
Original file line number Diff line number Diff line change 64
64
</constraint >
65
65
<constraint name =" Length" >
66
66
<option name =" min" >2</option >
67
+ <option name =" max" >4096</option >
67
68
<option name =" minMessage" >fos_user.password.short</option >
68
69
<option name =" groups" >
69
70
<value >Registration</value >
153
154
</constraint >
154
155
<constraint name =" Length" >
155
156
<option name =" min" >2</option >
157
+ <option name =" max" >4096</option >
156
158
<option name =" minMessage" >fos_user.password.short</option >
157
159
<option name =" groups" >
158
160
<value >Registration</value >
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ application.
84
84
The easiest way to override a bundle's template is to simply place a new one in
85
85
your ` app/Resources ` folder. To override the layout template located at
86
86
` 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 ` .
88
88
89
89
As you can see the pattern for overriding templates in this way is to
90
90
create a folder with the name of the bundle class in the ` app/Resources ` directory.
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ resetting:
60
60
password_already_requested : このユーザーのパスワードは 24 時間以内ですでにリクエストされています。
61
61
check_email : %email% 宛にメールを送信しました。メールに記載された確認 URL にアクセスして、アカウントを有効化してください。
62
62
request :
63
- invalid_username : " \" %username%\ " というユーザー名またはメールアドレスは存在しません。"
63
+ invalid_username : ' " %username%" というユーザー名またはメールアドレスは存在しません。'
64
64
username : " ユーザー名かメールアドレス:"
65
65
submit : パスワードのリセット
66
66
reset :
You can’t perform that action at this time.
0 commit comments