From 85b653796204b23ee6654edabd0aa0f2c371076f Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon <yahgrp@poplarware.com> Date: Mon, 2 Jun 2014 10:19:28 -0700 Subject: [PATCH] Issue #2248799 by amitgoyal, Wim Leers, c31ck, joachim: Fix docs for system_sort_themes(). --- core/modules/system/system.module | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 377c30e52992..6bd8dd4307e8 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -1372,7 +1372,12 @@ function system_sort_modules_by_info_name($a, $b) { } /** - * Array sorting callback; sorts modules or themes by their name. + * Sorts themes by their name. + * + * Callback for uasort() within + * \Drupal\system\Controller\SystemController::themesPage(). + * + * @see system_sort_modules_by_info_name(). */ function system_sort_themes($a, $b) { if ($a->is_default) { -- GitLab