diff options
author | Thomas B. <thomas@roundcube.net> | 2014-04-18 13:01:05 +0200 |
---|---|---|
committer | Thomas B. <thomas@roundcube.net> | 2014-04-18 13:01:05 +0200 |
commit | c9f4e33f51316d37036cef211038a02f7e29e4cb (patch) | |
tree | 887e4ce459f33341bf9e9fda773c3557ede9d02f | |
parent | c0b295f04b97b0543105dd6cd2c93b61342115c9 (diff) | |
parent | c75670d500bed0c7c64142146f27fa3598e86106 (diff) |
Merge pull request #175 from chriskulbacki/master
Skins sorted by skin name in the Settings.
-rw-r--r-- | program/steps/settings/func.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index 47efa5a70..bccd9caa8 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -346,6 +346,7 @@ function rcmail_user_prefs($current = null) $license_link = $meta['license-url'] ? html::a(array('href' => $meta['license-url'], 'target' => '_blank'), rcube::Q($meta['license'])) : rcube::Q($meta['license']); } + $skinnames[] = mb_strtolower($skinname); $blocks['skin']['options'][$skin]['content'] = html::label(array('class' => 'skinselection'), html::span('skinitem', $input->show($config['skin'], array('value' => $skin, 'id' => $field_id.$skin))) . html::span('skinitem', html::img(array('src' => $thumbnail, 'class' => 'skinthumbnail', 'alt' => $skin, 'width' => 64, 'height' => 64))) . @@ -354,6 +355,7 @@ function rcmail_user_prefs($current = null) html::span('skinlicense', $license_link ? $RCMAIL->gettext('license').': ' . $license_link : '')) ); } + array_multisort($blocks['skin']['options'], SORT_ASC, SORT_STRING, $skinnames); } } |