From 6f728d71c0a5036b90547698918efbe7666cc241 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Sun, 11 Jan 2026 06:50:57 +0000 Subject: [PATCH] Reorder gravatar_default_setting_options to match Gravatar's developer docs (#43658). Patch by Go MAEDA (user:maeda). git-svn-id: https://svn.redmine.org/redmine/trunk@24295 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/settings_helper.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/helpers/settings_helper.rb b/app/helpers/settings_helper.rb index 85eac4a37..19a986718 100644 --- a/app/helpers/settings_helper.rb +++ b/app/helpers/settings_helper.rb @@ -239,12 +239,12 @@ module SettingsHelper end def gravatar_default_setting_options - [['Identicons', 'identicon'], - ['Monster ids', 'monsterid'], + [['Initials', 'initials'], ['Mystery man', 'mm'], - ['Retro', 'retro'], - ['Robohash', 'robohash'], + ['Identicons', 'identicon'], + ['Monster ids', 'monsterid'], ['Wavatars', 'wavatar'], - ['Initials', 'initials']] + ['Retro', 'retro'], + ['Robohash', 'robohash']] end end