Merge pull request #4385 from Flaburgan/change-default-value-profile

Remove placeholders for name fields in settings (no more Sofaer)
This commit is contained in:
Jonne Haß 2013-08-14 12:24:26 -07:00
commit e5bf54f2d0
3 changed files with 5 additions and 4 deletions

View file

@ -35,6 +35,7 @@
* Adjust Facebook character limit to reality [#4380](https://github.com/diaspora/diaspora/issues/4380)
* Restore truncated URLs when posting to Twitter [#4211](https://github.com/diaspora/diaspora/issues/4211)
* Fix mobile search tags [#4392](https://github.com/diaspora/diaspora/issues/4392)
* Remove placeholders for name fields in settings (no more Sofaer) [#4385](https://github.com/diaspora/diaspora/pull/4385)
## Features
* Admin: add option to find users under 13 (COPPA) [#4252](https://github.com/diaspora/diaspora/pull/4252)

View file

@ -42,10 +42,10 @@
%h4
= t('profiles.edit.your_name')
= label_tag 'profile[first_name]', t('profiles.edit.first_name')
= text_field_tag 'profile[first_name]', profile.first_name, :placeholder => "Raphael"
= text_field_tag 'profile[first_name]', profile.first_name
= label_tag 'profile[first_name]', t('profiles.edit.last_name')
= text_field_tag 'profile[last_name]', profile.last_name, :placeholder => "Sofaer"
= text_field_tag 'profile[last_name]', profile.last_name
%br

View file

@ -49,10 +49,10 @@
%h4
= t('profiles.edit.your_name')
= label_tag 'profile[first_name]', t('profiles.edit.first_name')
= text_field_tag 'profile[first_name]', profile.first_name, :placeholder => "Raphael"
= text_field_tag 'profile[first_name]', profile.first_name
= label_tag 'profile[first_name]', t('profiles.edit.last_name')
= text_field_tag 'profile[last_name]', profile.last_name, :placeholder => "Sofaer"
= text_field_tag 'profile[last_name]', profile.last_name
%br