Issue #2080397 by mrsinguyen: Remove Unused local variable from /core/modules/simpletest/simpletest.module.
parent
b2ab427bb2
commit
29e3ae0cc4
|
@ -525,7 +525,7 @@ function simpletest_test_get_all($module = NULL) {
|
||||||
|
|
||||||
// Sort the groups and tests within the groups by name.
|
// Sort the groups and tests within the groups by name.
|
||||||
uksort($groups, 'strnatcasecmp');
|
uksort($groups, 'strnatcasecmp');
|
||||||
foreach ($groups as $group => &$tests) {
|
foreach ($groups as &$tests) {
|
||||||
uksort($tests, 'strnatcasecmp');
|
uksort($tests, 'strnatcasecmp');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue