diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index c1e81f0bb..b6f67890d 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -950,7 +950,11 @@ function system_sort_modules_by_info_name($a, $b) { } /** - * Array sorting callback; sorts modules or themes by their name. + * Sorts themes by their names, with the default theme listed first. + * + * Callback for uasort() within system_themes_page(). + * + * @see system_sort_modules_by_info_name(). */ function system_sort_themes($a, $b) { if ($a->is_default) { |