Merge branch 'stable' into develop

This commit is contained in:
Jonne Haß 2015-06-07 21:14:51 +02:00
commit 1c834d49d8
2 changed files with 2 additions and 1 deletions

View file

@ -89,6 +89,7 @@ Ruby 2.0 is no longer officially supported.
* Disable autocorrect for username on mobile sign in [#6028](https://github.com/diaspora/diaspora/pull/6028)
* Fix broken default avatars in the database [#6014](https://github.com/diaspora/diaspora/pull/6014)
* Only strip text direction codepoints around hashtags [#6067](https://github.com/diaspora/diaspora/issues/6067)
* Fix selected week on admin weekly stats page [#6079](https://github.com/diaspora/diaspora/pull/6079)
## Features
* Hide post title of limited post in comment notification email [#5843](https://github.com/diaspora/diaspora/pull/5843)

View file

@ -7,7 +7,7 @@
%div.pull-right
= form_tag('/admins/weekly_user_stats', method: 'get', class: 'form-inline') do
= select_tag(:week, options_for_select(@created_users_by_week.keys.reverse), selected: @selected_week)
= select_tag(:week, options_for_select(@created_users_by_week.keys.reverse, @selected_week))
= submit_tag t('admins.stats.go'), class: 'btn btn-primary'
= t('.amount_of', count: @counter)